73

I'm using reStructuredText and I'd like to add HTML encoding an interactive flash-type animation through the <embed> tag. From my .rst document, how can I specify the position of this arbitrary chunk of HTML? Something like:

  .. html ::

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

Does this feature exist? thanks.

Brigand
  • 84,529
  • 20
  • 165
  • 173

1 Answers1

96

Try

.. raw:: html

    <embed>
        ...
    </embed>

The raw directive

Owen
  • 38,836
  • 14
  • 95
  • 125