You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
544 B
21 lines
544 B
{%- extends 'rst.tpl' -%}
|
|
|
|
{% macro notebooklink() -%}
|
|
|
|
`View the original notebook on nbviewer <https://nbviewer.jupyter.org/github/jupyter/notebook/blob/master/docs/{{ resources['metadata']['path'] }}/{{ resources['metadata']['name'] | replace(' ', '%20') }}.ipynb>`__
|
|
|
|
|
|
{%- endmacro %}
|
|
|
|
{%- block header %}
|
|
{{ notebooklink() }}
|
|
{% endblock header -%}
|
|
|
|
{%- block footer %}
|
|
{{ notebooklink() }}
|
|
{% endblock footer -%}
|
|
|
|
{% block markdowncell scoped %}
|
|
{{ cell.source | markdown2rst | replace(".ipynb>", ".html>") }}
|
|
{% endblock markdowncell %}
|