You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			91 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Django/Jinja
		
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Django/Jinja
		
	
{% extends 'display_priority.j2' %}
 | 
						|
 | 
						|
 | 
						|
{% block input %}
 | 
						|
{% if resources.global_content_filter.include_input_prompt %}
 | 
						|
{% if cell.execution_count is defined -%}
 | 
						|
    +*In[{{ cell.execution_count|replace(None, " ") }}]:*+
 | 
						|
{% else %}
 | 
						|
    +*In[]:*+
 | 
						|
{%- endif -%}
 | 
						|
{%- endif -%}
 | 
						|
[source
 | 
						|
{%- if 'magics_language' in cell.metadata  -%}
 | 
						|
   , {{ cell.metadata.magics_language}}
 | 
						|
{%- elif 'pygments_lexer' in nb.metadata.get('language_info', {}) -%}
 | 
						|
   , {{ nb.metadata.language_info.pygments_lexer }}
 | 
						|
{%- elif 'name' in nb.metadata.get('language_info', {}) -%}
 | 
						|
   , {{ nb.metadata.language_info.name }}
 | 
						|
{%- endif -%}]
 | 
						|
----
 | 
						|
{{ cell.source}}
 | 
						|
----
 | 
						|
{% endblock input %}
 | 
						|
 | 
						|
{% block output_group %}
 | 
						|
{% if resources.global_content_filter.include_output_prompt %}
 | 
						|
{% if cell.execution_count is defined -%}
 | 
						|
    +*Out[{{ cell.execution_count|replace(None, " ") }}]:*+
 | 
						|
{%- else -%}
 | 
						|
    +*Out[]:*+
 | 
						|
{%- endif -%}
 | 
						|
{%- endif %}
 | 
						|
----
 | 
						|
{{- super() -}}
 | 
						|
----
 | 
						|
{% endblock output_group %}
 | 
						|
 | 
						|
{% 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 -}}
 | 
						|
{% endblock stream %}
 | 
						|
 | 
						|
{% block data_svg %}
 | 
						|

 | 
						|
{% endblock data_svg %}
 | 
						|
 | 
						|
{% block data_png %}
 | 
						|

 | 
						|
{% endblock data_png %}
 | 
						|
 | 
						|
{% block data_jpg %}
 | 
						|

 | 
						|
{% endblock data_jpg %}
 | 
						|
 | 
						|
{% block data_latex %}
 | 
						|
{{ output.data['text/latex'] | convert_pandoc(from_format="latex", to_format="asciidoc")}}
 | 
						|
{% endblock data_latex %}
 | 
						|
 | 
						|
{% block data_html scoped %}
 | 
						|
{{ output.data['text/html'] | convert_pandoc(from_format='html', to_format='asciidoc')}}
 | 
						|
{% endblock data_html %}
 | 
						|
 | 
						|
{% block data_markdown scoped %}
 | 
						|
{{ output.data['text/markdown'] | markdown2asciidoc}}
 | 
						|
{% endblock data_markdown %}
 | 
						|
 | 
						|
{% block data_text scoped %}
 | 
						|
{{-output.data['text/plain']-}}
 | 
						|
{% endblock data_text %}
 | 
						|
 | 
						|
{% block markdowncell scoped %}
 | 
						|
{{ cell.source | markdown2asciidoc}}
 | 
						|
{% endblock markdowncell %}
 | 
						|
 | 
						|
{% block unknowncell scoped %}
 | 
						|
unknown type  {{ cell.type }}
 | 
						|
{% endblock unknowncell %}
 |