Chris Sewell
Chris Sewell
With new versions of myst-parser and myst-nb, file-level configuration is now available under the `myst`/mystnb` "namespaces": - https://myst-parser.readthedocs.io/en/latest/configuration.html#local-configuration - https://myst-nb.readthedocs.io/en/latest/configuration.html#file-level-configuration Both of which are auto-generated from a central "source of...
Read the Docs has [a search-as-you-type extension](https://readthedocs-sphinx-search.readthedocs.io) that displays a pop-up to show search results as you type. However, as we found out in https://github.com/aiidateam/aiida-core/pull/4111, there are compatibility issues with...
The code here: https://github.com/pydata/pydata-sphinx-theme/blob/31299f7921803ce8e0844ddda2efe9c5e6c3a517/src/pydata_sphinx_theme/bootstrap_html_translator.py#L31 overrides: https://github.com/sphinx-doc/sphinx/blob/be7313348c0a102dbf235cf36a79b510b1822c95/sphinx/writers/html5.py#L749 But this means the `align` and `width` options of the `table` directive are not "honoured"
I'm pretty sure the next/previous page translations don't work here, because the internal sphinx catalog (https://github.com/sphinx-doc/sphinx/tree/3.x/sphinx/locale) does not contain translations for them (the `_` filter is a shorthand for using...
When hosted on ReadTheDocs, the dropdown menu that they inject is permanently on display, which is IMO not ideal. By contrast, with the RTD theme, it is hidden in the...
Hey guys, nice package. However, I have matplotlib outputting pdf format, so am getting a lot of: ``` Traceback: mismatch 'application/pdf' > ``` I guess the simplest fix would be...
nbconvert 6.0 is in the works: jupyter/nbconvert#1045 One thing this will definitely break is the Jinja template names (jupyter/nbconvert#1056), which are changing to e.g. `display_priority.tpl` -> `display_priority.j2` (see also jupyter/nbconvert#1119)
Rather than using nbconvert (and hence jinja) to convert notebooks, it may be conceptually nicer to convert the notebook into the pandoc AST format, then iteratively apply (panflute) filters to...