Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
I upgraded to Arbortext 8.2.0.1 and now see that my topicref titles are appearing as zeros in my bookmaps. This occurs in Column View only. I ran the "Update Stylesheet for Editor", but no change. Ideas?
Solved! Go to Solution.
Yes, this is a known issue that should be fixed in 8.2.1.0.
The workaround is
Open <Editor_Install>\packages\dita\_ditamapoutline.acl
Find the line (line 136) if(title = '' && index(dita_version(doc),"2.") == 1) {
Notice the single '=' after title.
Change the line to be if(title == '' && index(dita_version(doc),"2.") == 1) {
So the single = is replaced by ==.