I have a static blog made with hakyll, and some ipython notebooks -I'd like to share.
My solution
ipython nbconvert --to markdown notebook.ipynb
Gives me:
notebook.md
/notebook_files/
notebook_files
contains:
notebook_1.png
notebook_2.png
notebook_3.png
I move the .png files into my /images
folder.
I copy the notebook.md
to the /posts
folder.
In notebook.md
I search:

and replace it by:

Also, I need to add python prefixes to the code so that it detects python syntax:
```phyton
code
```
So, doable, but painful if I have to repeat it for evert post.
Question:
Is there some way, either standard or smarter, to do this?