Chris Sewell

Results 1352 comments of Chris Sewell

> example demonstrating the issue Heya @jclerman, to paraphrase your example, you have, files: ``` docs/ index.rst general/ overview.md algorithm.md ``` and then: `docs/index.rst` ```restructuredtext .. include:: general/overview.md :parser: myst_parser.sphinx_...

@n-peugnet and @NSeydoux if your issue is different to what I describe above, then yeh it would probably be best if you open a separate issue, ideally also with a...

Hey @mgielda, so... everything in https://github.com/executablebooks/MyST-Parser/blob/master/myst_parser/_docs.py is not public API, hence why it has the prefix `_` which is the common practice in sphinx for signalling this. As the docstring...

(all of the code in the module is just very quick and dirty lol, just to implement what I needed)

If you want to try making a PR for a more "rigorous" directive, then of course I would be interested, but then I expect tests and the like lol

Thanks for the pointer @westurner, how does #721 look? https://myst-parser--722.org.readthedocs.build/en/722/index.html

Sorry I'm a little confused by what you are after here 😅 Should I prepend "| MyST Parser", to all titles, rather than append? Or maybe you can you give...

> Are there breadcrumbs from sphinx or jupyter-book. I'd note myst-parser has no dependence on jupyter-book (it's the other way around) Not sure exactly what you mean by breadcrumbs here?...

Heya, you just need to wrap the `**` in quotes, to denote it as a string: ````` ```{sw-package-import} :dependency_graph: False :glob: "**" ``` ````` Yes its a bit of a...

Yep exactly, really we want to be able to parse the option blocks without anything a complicated as YAML; which was the easiest thing to add initially but is annoying...