Matthias Geier
Matthias Geier
I'm trying a different approach for replacing the JSON-based notebook format: https://github.com/mgeier/jupyter-format/ This is how your `eosc213_students` project would look like when using my new format: https://github.com/mgeier/eosc213_students What do you...
> are there other benefits that would make it a substitute for jupytext py:percent? Arguably, my format is more readable because you don't have `#` everywhere. But I'm not really...
OK, so you are really treating it like Python code. It would be interesting though, to have notebook-aware versions of the tools you mentioned. I guess this would work well...
For now, `nbsphinx` doesn't support adding custom preprocessors, but it shouldn't be too hard to implement this. Would you like to make a PR for this?
If you need help, don't hesitate to ask!
AFAIK, the thing with the `HighlightMagicsPreprocessor` only works because it is in the list of default preprocessors: https://github.com/jupyter/nbconvert/blob/d7c996c87db98c2bb80e72a0c22511a802064bc4/nbconvert/exporters/exporter.py#L70 A few lines above you can see the `preprocessors` attribute, maybe you...
Instead of going the Markdown detour, you can also simply use text output: ```python print(f"""\ pip install jupyter-lsp={JUPYTER_LSP_VERSION} jupyter labextension install @krassowski/jupyterlab-lsp@{JUPYTERLAB_LSP_VERSION} """) ``` > Would you think that using...
> I can't find documentation for just "hide_input" and looking through the issues, it's not clear how the whole "hide input" thing was ever resolved. It wasn't. There are several...
Thanks for this PR! Is `exclude_code_cell` really ever needed? And even if that's the case, wouldn't a combination of `exclude_input` and `exclude_output` do the same thing? Is `exclude_markdown` really needed?...
@DavidPowell I agree, can you please just add the options you need? If somebody else needs more, we can add them later. > would you prefer that I rebased and...