I need to add a bold tag (b) to callout numbers that have the form (1), (2), (n).
The regex would be something like:
Code: Select all
\(\d+\)
Since Oxygen can do a search and replace using Xpath, I looked at how to restrict the search and replace to callouts that don't already have the tag. It would look something like:
Code: Select all
[not(ancestor::b)]
Thank you for your help.