Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
Hi,
I would like to automatically remove all the <emphasis> tags in my document with an ACL function (or other means). Do you have a solution ?
Solved! Go to Solution.
To remove all <emphasis> elements from a document open in Arbortext Editor, copy the following commands and paste them at the command line:
find -m '<emphasis>'; while ($status==0) {delete_tag; find -m '<emphasis>'}
Good luck!
Suzanne Napoleon
"WYSIWYG is last-century technology!"
To remove all <emphasis> elements from a document open in Arbortext Editor, copy the following commands and paste them at the command line:
find -m '<emphasis>'; while ($status==0) {delete_tag; find -m '<emphasis>'}
Good luck!
Suzanne Napoleon
"WYSIWYG is last-century technology!"
Hi Suzanne,
Thank you for your help.
FYI: You can enter help find and help delete_tag at the command line to display detailed Help information about these commands.