Skip to content

Instantly share code, notes, and snippets.

@lekaha
Created May 17, 2016 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lekaha/97987b39c94fd7d8587400a0a38da41e to your computer and use it in GitHub Desktop.
Save lekaha/97987b39c94fd7d8587400a0a38da41e to your computer and use it in GitHub Desktop.
nbconvert template
{% extends 'markdown.tpl' %}
{%- block header -%}
---
layout: post
title: "{{resources['metadata']['name']}}"
categories: wiki
tags:
- python
- notebook
---
{%- endblock header -%}
{% block in_prompt %}
**In [{{ cell.execution_count }}]:**
{% endblock in_prompt %}
{% block input %}
{{ '{% highlight python %}' }}
{{ cell.source }}
{{ '{% endhighlight %}' }}
{% endblock input %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment