KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
ipynb_reader
★ 10
Open GitHub ↗
An IPython Notebook reader for Pelican
Download README (.md)
Explore Similar Repositories
mailchimp-form-cljs
:
A simple mailchimp-esque form in clojurescript and reagent
Composite-UI-Sample
:
No description available.
ti2406pa
:
TI2406 Practical Assignment
morse-code-trainer
:
Trains you to hear Morse code. Uses Koch method
teaching
:
a collection of materials/resources for teaching technology
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ipynb_reader
?
Download (.md)
IPython/Jupyter Notebook Reader =============================== This plugin gives Pelican the ability to build blogs from IPython/Jupyter notebooks. Just install it, edit some metadata in the notebook and you're good to go. Installation ------------ As this is currently an alpha release, you'll need to clone down the repo and add the path to the pelican plugins path. PLUGIN_PATHS = ['/path/to/dir/'] PLUGINS = ['ipynb'] Metadata -------- IPython/Juypter provides a handy toolbar for editting the notebook's metadata. Just create a substructure called "blogdata" and add the needed fields there. //stuff here "blogdata", { "title" : "My first IPyNB post!", "date" : "2015-03-03", "tags" : "tag1, tag2", //...you get the idea }, //more stuff here Once that's done, Pelican should be able to build your blog! Known Issues ------------ Since this uses the built in NBConvert functionality to first build an RST document, embedded HTML doesn't seem to be converted. Whoops...