I have found PA Desktop very useful for changing content in XML files based on different rules.
Now I wonder whether I can use same method to parse some files with markup language to html.
'''text''' -> <bold>text</bold>.
How can I tell whether ''' is before or after text?
Maybe you can try something like this
'''(.*?)''' Gives all the strings that are between ''' and '''
And then you can replace them as <bold>def</bold>