Python-Markdown-Editor
Python-Markdown-Editor copied to clipboard
Standalone editor for your markdown files
Right now the server is initiated to point to a particular file. It would be nice if one could open or save another file in the same folder directly from...
Currently the markdown-editor is vulnerable to XSS. This PR introduces DOMPurify (https://github.com/cure53/DOMPurify) which cleans potential malicious JavaScript.
It is currently really easily possible to access the website from a device which is not the server, however this is logged but not disabled by default and I guess...
More a pain point than a show-stopper, the editor piece doesn't account for any kind of word-wrapping.
``` foo ``` Renders the following error: ``` File "markdowneditor/lib/python3.12/site-packages/pygments/__init__.py", line 82, in highlight return format(lex(code, lexer), formatter, outfile) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "markdowneditor/lib/python3.12/site-packages/pygments/__init__.py", line 64, in format formatter.format(tokens, realoutfile) File "markdowneditor/lib/python3.12/site-packages/pygments/formatter.py",...