Isaac Muse
Isaac Muse
Updated results using the latest released Markdown.
Ugh, I see this is broken in lists as well. For some reason, I was assuming this to be an Admonition specific issue 😦. And I guess, even before the...
This feels like a `pip` or `setuptools` problem, not a problem we need to directly address. At the very least, it is nice to know this issue exists so we...
In general, when I went through the pain of getting fenced blocks to work under lists and such via SuperFences, I just made it so that users could create custom...
> @facelessuser you make some valid points. I have not looked too closely at how you implemented superfences, and was curious how you worked around the problems with the existing...
> Just stumbled upon [MyST](https://myst-parser.readthedocs.io/en/latest/index.html), a Commonmark parser which is intended as a reStructuredText replacement. I've seen many before, but this is the first one where I like the [directives...
So, I actually started to play around with this, and it is in a very early prototype stage. I wanted to make sure I could get it to work in...
Yeah, it is pretty easy to just derive to create shortcut for Note admonitions and such: ```py class Admonition(DirectiveTemplate): """Admonition.""" NAME = 'admonition' def on_create(self, parent): """Create the element.""" el...
> However, a wrapper around what you have so far could provide a more general purpose system that uses actual templates. I just wouldn't name what you have "template." Yeah,...
I did get "templating" working. But it seems to offer a host of troublesome situations. We have to create a temporary `div` to let Markdown figure out the context and...