Chris Sewell

Results 1261 comments of Chris Sewell

That’s certainly a possibility

Since #380, you can now set e.g. `nb_render_error_lexer = "ipythontb"` in your `conf.py`, for a global setting, or add to a notebook metadata e.g. ```json {"mystnb": {"render_error_lexer": "ipythontb"}} ``` for...

Note, to turn off any lexing it would be `nb_render_error_lexer = "none"` I'm going to change this to a documentation issue, but let me know if this still does not...

> Should this be working in Jupyter Book No, jupyter book is currently not using the latest version of myst-nb

but if its ok, I will close this here as fixed

Note another way to do this I think is to use a `root_prefix` (see https://jupytext.readthedocs.io/en/latest/config.html?highlight=root_prefix#configuring-paired-notebooks-globally), to put the the files in different folders: ``` # Pair notebooks in subfolders of...

Since #380, this is easy to configure for with https://www.sphinx-doc.org/en/master/usage/extensions/imgconverter.html: ```python extensions = ["sphinx.ext.imgconverter"] nb_mime_priority_overrides = [ # builder name, mime type, priority ("latex", "image/svg+xml", 15) ] ``` `sphinx.ext.imgconverter` is...

Indeed, it is detailed here: https://myst-nb.readthedocs.io/en/latest/render/format_code_cells.html#outputs-mime-priority

> So I wanted to recommend bump2version to you. yeh I guess its how it fits into https://executablebooks.org/en/latest/dev-conventions.html#the-process-of-creating-a-release, and whether it would be a help or an added thing to...

Moved to an issue thanks @mgeier