Reputation: 1604
I have a jupyter notebook that I want to share on Internet.
I will upload the *.ipynb file so that the visitor can download and run it, but I also wanted to show the notebook directly in a webpage.
Note : I don't want the reader to be able to actually RUN the notebook, I am just looking for an appropriate HTML / CSS / JS template or something similar. I assume the plots will just be pictures, which is fine
Upvotes: 0
Views: 81
Reputation: 533
You can use <object>
tag to embed files in html. but iPython notebook file is not supported. So covert it using the nbconvert.
Upvotes: 1