Sphinx Html Builder Render Function
I included a raw directive in my rst file: .. raw:: html < html here > In the HTML, there is a dynamically placed string that contains reStructuredText. Since it is plac
Solution 1:
Use an opening raw
directive with HTML, then your reST, then a closing raw
directive.
.. raw:: html
<html open>
Some reST stuff, oooh, a `link to the raw directive
<http://docutils.sourceforge.net/docs/ref/rst/directives.html#raw-data-pass-through>`_
.. raw:: html
<html close>
Post a Comment for "Sphinx Html Builder Render Function"