I am trying to embed an interactive graph, which is saved as an html file, in a reStructuredText document using an iframe :
.. raw:: html <iframe src="filename.html" height="345px" width="100%"></iframe>
The html file is in the same directory as my .rst , but the graph is not displayed, and I get the file could not be found error.
However, if I insert an external html file into the _build/html directory, the graph is displayed in order. How to insert this html file correctly so that the graph is embedded automatically when I make html ?
A working example of what I want.
source share