I want to render ® characters as "<small><sup>®</sup></small>".
But since "<small><sup>®</sup></small>" already occurs in the content, I would like to leave that untouched. How is that possible?
Another way is to use Regular Expressions. Depending on how specific you need it, I think it would be enough to ignore any '®' that has a '>' before or a '<' after it.
So you can search for this with the Regular Expressions setting on:
I noticed that the solution only affects strings of words where letters/characters follow the ® character, e.g. abc®-01 or abc®5. If the word ends in ®, the global replacement does not apply. How can this be resolved?
I am happy about every answer.
Another way is to use Regular Expressions. Depending on how specific you need it, I think it would be enough to ignore any '®' that has a '>' before or a '<' after it.
That.
So it will not work on ® characters that have a '<' after it.