When creating Juypter notebooks some important standard directives supported by Sphinx (and implemented in Docutils) like warning, caution and tip are not rendered. Containing text is just rendered but no warning-box etc. decoration is rendered.
RST-Text:
.. warning::
Please respect...
.. attention::
When you do...
.. caution::
In situations where ..
Just renders to:
Please respect...
When you do...
In situations where ..
Can you please implement rendering of these standard directives:
Rendering a warning directive to something like given below, whould be fine:
Warning
This is some undercover text, but strictly spoken it should be a warning.
This would give this great SPHINX extension another significant boost in usage value.
I looked at the code to juge if I could be able to do that on my own, but I could not even find out the code entry point and the control flow of the package programs that happens when I do "make Jupyter". It need to be done by the specialists or authors.
When creating Juypter notebooks some important standard directives supported by Sphinx (and implemented in Docutils) like warning, caution and tip are not rendered. Containing text is just rendered but no warning-box etc. decoration is rendered.
RST-Text:
.. warning::
Please respect...
.. attention::
When you do...
.. caution::
In situations where ..
Just renders to:
Please respect... When you do... In situations where ..
Can you please implement rendering of these standard directives:
https://docutils.sourceforge.io/docs/ref/rst/directives.html#caution https://docutils.sourceforge.io/docs/ref/rst/directives.html#warning etc.
directive "note" works and renders to:
Rendering a warning directive to something like given below, whould be fine:
This would give this great SPHINX extension another significant boost in usage value.
I looked at the code to juge if I could be able to do that on my own, but I could not even find out the code entry point and the control flow of the package programs that happens when I do "make Jupyter". It need to be done by the specialists or authors.