Anton Akhmerov
Anton Akhmerov
I didn't mean to say that it's not worth it. It's likely worth, however the specific implementation requires evaluating and answering the above questions.
It seems that: * `CellOutputRenderer` has access to the document node. * IIRC myst-nb keeps kernel info in the document metadata. That suggests a possible approach, where the renderer would...
It's definitely possible, but it requires figuring out the latex markup generated by sphinx and modifying it. I don't think my latex-fu is strong enough.
Are you sure the code block level is optimal for this? It appears that another alternative would be to control this on the IPython level by hooking into its display...
I think usually it's better to prioritize global configuration over local one since that requires less work from the user. Furthermore it's usually a good idea to not implement alternative...
Can you please provide a minimal reproducible example (what to put in conf.py and into the document)?
Tricky: injecting css during build prevents users from overriding it since it is then inserted after the user-provided css. This change is due to fixing #149
This comment https://github.com/sphinx-doc/sphinx/issues/6241#issuecomment-705070598 contains an implementation of conditional js/css inclusion, however I believe the proper way to address this issue is to switch to sphinx-thebe #137 Still, we may want...
This is unexpected: as far as I understand, if there are widgets in the notebook, the notebook must contain widget state. Do you have a minimal reproducible example? Can you...
I agree that sphinx generally tends to not abort on data inconsistencies. Here, however, it is not clear to me how the error may occur and whether it isn't an...