-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add custom nbconvert template to add captions to images
Solves #6 Based on jupyter/nbconvert#1112 but applied to markdown rather than HTML
- Loading branch information
1 parent
4f69e50
commit 97d8e78
Showing
2 changed files
with
77 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
{% extends 'display_priority.tpl' %} | ||
|
||
|
||
{% block in_prompt %} | ||
{% endblock in_prompt %} | ||
|
||
{% block output_prompt %} | ||
{%- endblock output_prompt %} | ||
|
||
{% block input %} | ||
``` | ||
{%- if 'magics_language' in cell.metadata -%} | ||
{{ cell.metadata.magics_language}} | ||
{%- elif 'name' in nb.metadata.get('language_info', {}) -%} | ||
{{ nb.metadata.language_info.name }} | ||
{%- endif %} | ||
{{ cell.source}} | ||
``` | ||
{% endblock input %} | ||
|
||
{% block error %} | ||
{{ super() }} | ||
{% endblock error %} | ||
|
||
{% block traceback_line %} | ||
{{ line | indent | strip_ansi }} | ||
{% endblock traceback_line %} | ||
|
||
{% block execute_result %} | ||
|
||
{% block data_priority scoped %} | ||
{{ super() }} | ||
{% endblock %} | ||
{% endblock execute_result %} | ||
|
||
{% block stream %} | ||
{{ output.text | indent }} | ||
{% endblock stream %} | ||
|
||
{% block data_svg %} | ||
![{{(output | get_metadata('alt', 'image/svg+xml')) or (cell | get_metadata('alt')) or ""}}]({{ output.metadata.filenames['image/svg+xml'] | path2url }}) | ||
{% endblock data_svg %} | ||
|
||
{% block data_png %} | ||
![{{(output | get_metadata('alt', 'image/png')) or (cell | get_metadata('alt')) or ""}}]({{ output.metadata.filenames['image/png'] | path2url }}) | ||
{% endblock data_png %} | ||
|
||
{% block data_jpg %} | ||
![{{(output | get_metadata('alt', 'image/jpeg')) or (cell | get_metadata('alt')) or ""}}]({{ output.metadata.filenames['image/jpeg'] | path2url }}) | ||
{% endblock data_jpg %} | ||
|
||
{% block data_latex %} | ||
{{ output.data['text/latex'] }} | ||
{% endblock data_latex %} | ||
|
||
{% block data_html scoped %} | ||
{{ output.data['text/html'] }} | ||
{% endblock data_html %} | ||
|
||
{% block data_markdown scoped %} | ||
{{ output.data['text/markdown'] }} | ||
{% endblock data_markdown %} | ||
|
||
{% block data_text scoped %} | ||
{{ output.data['text/plain'] | indent }} | ||
{% endblock data_text %} | ||
|
||
{% block markdowncell scoped %} | ||
{{ cell.source }} | ||
{% endblock markdowncell %} | ||
|
||
{% block unknowncell scoped %} | ||
unknown type {{ cell.type }} | ||
{% endblock unknowncell %} |