How to embed HTML in a restructured text file?

I am using reStructuredText , and I would like to add HTML encoding of an interactive flash type animation using the <embed> . From my .rst document, how can I indicate the position of this arbitrary HTML fragment? Something like:

  .. html :: <embed> ... more html here ... </embed> 

Is there this feature? thank.

+48
html restructuredtext embedded-resource
Dec 23 2018-11-12T00:
source share
1 answer

Try

 .. raw:: html <embed> ... </embed> 

Raw directive

+62
Dec 24 2018-11-11T00:
source share
— -



All Articles