executablebooks / markdown-it-docutils

A markdown-it plugin for implementing docutils style roles/directives.
https://executablebooks.github.io/markdown-it-docutils/
MIT License
12 stars 8 forks source link

Colon fences with no space after fails. #44

Open rowanc1 opened 1 year ago

rowanc1 commented 1 year ago

I suspect that the options are getting triggered by the ::: and then failing validation.

::::{grid} 1 1 2 3
:::{grid-item-card}
Text content ✏️
^^^
Structure books with text files and Jupyter Notebooks with minimal configuration.
:::
::::
chrisjsewell commented 1 year ago

See: https://github.com/executablebooks/MyST-Parser/blob/4a30c24d1043a26178df4e7a7e6aac6fed8f5b70/myst_parser/mdit_to_docutils/base.py#L1081

rowanc1 commented 1 year ago

Thank you!