cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X

Remove automatically all the <emphasis> tags

dgopois
12-Amethyst

Remove automatically all the <emphasis> tags

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 ?

1 ACCEPTED SOLUTION

Accepted Solutions

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!"

View solution in original post

3 REPLIES 3

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.

Top Tags