Isaac Muse

Results 741 comments of Isaac Muse
trafficstars

I guess you could maybe make available an `escaped-body` and a `body` that could dictate what kind of temporary element gets created to store the content. For the rest, you...

I guess I should state that currently, templates with nested directives fail...not sure why though. I'll have to dig a bit deeper.

Yeah, that sounds good. That's probably going to be my approach for now. I think my current issue is the fact I'm swapping out the placeholder with the real template...

I've found something particular about list handling that won't allow: ``` - ::::{admonition} This is really important! --- type: warning class: some-class --- ``` It gets all messed up and...

I forgot that `~~~` is an alternate code format 🤦🏻 . But it seems I can get away with two (`--`) which is not quite what I'm looking for, but...

Yep, `hr` is processed before lists, this is likely to catch `- - -` before lists as I think `---` shouldn't trigger lists. Sigh, well that limits using `---` unless...

If we really wanted to use `---` Python Markdown would need to split up HR handling I think. Handle loose HR `- - -` prior to lists and tight `---`...

I have an experimental branch up here: https://github.com/facelessuser/pymdown-extensions/pull/1777 I ended up monkey patching HR so we could use the `---` format. Nothing we are doing is set in stone. Ideally,...

Just an overall description of how the current prototype is laid out. I think I'm ready to discuss the syntax. ``` :::{directive-name} arguments --- option1: value option2: value --- content...

I did end up allowing the other format for options as well. ``` :::{admonition} Title :class: note This is a note ::: ``` I had to add some intelligence so...