Remember as DiapDealer wrote ...
Inside the plugin in the file HTMLProcessor.py you need to make this change:
Quote:
EDIT:
It looks like this can be fixed as simply as by using the bundled regex module instead of the built-in re.
Changing:
import re
to:
import regex as re
Makes your test case from above work regardless of where the flags are placed.
|