Chris Sewell
Chris Sewell
Thanks for the feedback! Yeh that's a bit of a pain; the error message comes from the `pyyaml` package, and it is not possible to parse the line number "offset"...
Heya, Is there a way to debug what text is actually being parsed to `parse_markdown`, i.e. is django altering the text in any way before it reaches `parse_markdown`? Because, the...
heya, hmm yes it seems that one of your sphinx extensions is using `app.add_directive('name', Directive)` and adding a directive that is not a class, which seems weird. I can certainly...
At a guess this something to do with the way breathe handles directive registration: https://github.com/michaeljones/breathe/blob/4ce8c7a0d79f79f0ae3e7c7fbaa9c4fbb5c84888/breathe/directives.py#L564-L573
Hey @Anaphory, so at the moment no it does not, but I was actually playing around with this recently in https://github.com/executablebooks/MyST-Parser/tree/pop-bibliography and https://github.com/chrisjsewell/sphinx-glossary Currently, we rely on [sphinxcontrib-bibtex](https://sphinxcontrib-bibtex.readthedocs.io) for bibliographies;...
Out of interest, was there any other issues you had with JOSS integration?
That's great cheers, yeh no worries, primarily this just gives more prominence to my feeling that this would be nice to have in MyST
> which suggests that existing markdown-it-py plugins can be turned into MyST syntax extensions yep, the parsing of `[@citations]` syntax is relatively easy, its just then what you "do" with...
Yep exactly, the basic concept is fine, it's just handling all cases like: - What if you have multiple sources - where do you output the definitions - handling referencing...
Heya, note there is already a CLI interface (accepts a file or starts in interactive mode): ```console $ markdown-it markdown-it-py [version 0.1.0] (interactive) Type Ctrl-D to complete input, or Ctrl-C...