There is a typo in the regex that catches elements that should be escaped in the GFMRendererMixin: texarea
|
tagfilter = re.compile( |
|
r"<(title|texarea|style|xmp|iframe|noembed|noframes|script|plaintext)", |
|
flags=re.I, |
|
) |
|
tagfilter_no_open = re.compile( |
|
r"(?<!^)( *)<(title|texarea|style|xmp|iframe|noembed|noframes|script|plaintext)", |
|
flags=re.I, |
|
) |
There is a typo in the regex that catches elements that should be escaped in the GFMRendererMixin:
texareamarko/marko/ext/gfm/renderer.py
Lines 12 to 19 in 01f74f8