Vincent
Vincent

Reputation: 1604

How to create a web-page looking exactly like a Python notebook?

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

Answers (1)

Vyshak Puthusseri
Vyshak Puthusseri

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

Related Questions