Dmitry Shachnev
Dmitry Shachnev
It is worth noting that support for `[tool.setuptools]` section is still in beta stage and might change in future releases: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html#setuptools-specific-configuration I like it, but I would prefer to wait...
This extension supports KaTeX. Please see the “Notes” section of the README: https://github.com/mitya57/python-markdown-math/blob/master/README.md#notes If something does not work as expected, please be more specific.
It looks like it tries to use setuptools from distro packages, not from your virtualenv. And it is probably incompatible with pip from virtualenv. Can you run `pip install --upgrade...
> @mitya57 you proposed this addition. Any ideas? Was it really me? Anyway, it seems that the problem is indeed caused by our tricks with `sys.modules`. Looks like this is...
See also Pandoc Markdown's Divs and Spans https://pandoc.org/MANUAL.html#divs-and-spans which have a bit different but similar idea.
+1 for dropping Python 2 support in the end of 2019, together with Python. I also don't mind if you drop it earlier.
I am the original author of this extension, but unfortunately I don’t have enough time to dig into this. So the only thing I can say is that PRs are...
> If you’re concerned about crashing with recursion errors, what are your thoughts on `markdown.markdown('>' * 1000)`? Can you please file a separate issue for this bug? (FWIW `'>' *...
We do have this line, which is supposed to raise the window to the top of the window manager's stack. https://github.com/retext-project/retext/blob/0987c28226714633a470b8b8a7ee89de9c7f6bc9/ReText/__main__.py#L121 However, for some reason this does not happen. Maybe...
@paixi The issue that you were seeing is probably the same as one discussed in Python-Markdown/markdown#950. It happens when defusedxml module is present, and fixed in tiran/defusedxml#60. However, the original...