Show More
@@ -87,11 +87,11 b' unknown type {{ cell.type }}' | |||
|
87 | 87 | {% endblock unknowncell %} |
|
88 | 88 | |
|
89 | 89 | {% block pyout -%} |
|
90 |
{%- set extra_class |
|
|
90 | {%- set extra_class="output_pyout" -%} | |
|
91 | 91 | {% block data_priority scoped %} |
|
92 | 92 | {{ super() }} |
|
93 | 93 | {% endblock %} |
|
94 |
{%- set extra_class |
|
|
94 | {%- set extra_class="" -%} | |
|
95 | 95 | {%- endblock pyout %} |
|
96 | 96 | |
|
97 | 97 | {% block stream_stdout -%} |
@@ -111,7 +111,7 b' unknown type {{ cell.type }}' | |||
|
111 | 111 | {%- endblock stream_stderr %} |
|
112 | 112 | |
|
113 | 113 | {% block data_svg scoped -%} |
|
114 |
<div class="output_svg output_subarea{{extra_clas |
|
|
114 | <div class="output_svg output_subarea {{extra_class}}"> | |
|
115 | 115 | {%- if output.svg_filename %} |
|
116 | 116 | <img src="{{output.svg_filename | posix_path}}" |
|
117 | 117 | {%- else %} |
@@ -121,13 +121,13 b' unknown type {{ cell.type }}' | |||
|
121 | 121 | {%- endblock data_svg %} |
|
122 | 122 | |
|
123 | 123 | {% block data_html scoped -%} |
|
124 |
<div class="output_html rendered_html output_subarea{{extra_clas |
|
|
124 | <div class="output_html rendered_html output_subarea {{extra_class}}"> | |
|
125 | 125 | {{ output.html }} |
|
126 | 126 | </div> |
|
127 | 127 | {%- endblock data_html %} |
|
128 | 128 | |
|
129 | 129 | {% block data_png scoped %} |
|
130 |
<div class="output_png output_subarea{{extra_clas |
|
|
130 | <div class="output_png output_subarea {{extra_class}}"> | |
|
131 | 131 | {%- if output.png_filename %} |
|
132 | 132 | <img src="{{output.png_filename | posix_path}}" |
|
133 | 133 | {%- else %} |
@@ -144,7 +144,7 b" height={{output.metadata['png']['height']}}" | |||
|
144 | 144 | {%- endblock data_png %} |
|
145 | 145 | |
|
146 | 146 | {% block data_jpg scoped %} |
|
147 |
<div class="output_jpeg output_subarea{{extra_clas |
|
|
147 | <div class="output_jpeg output_subarea {{extra_class}}"> | |
|
148 | 148 | {%- if output.jpeg_filename %} |
|
149 | 149 | <img src="{{output.jpeg_filename | posix_path}}" |
|
150 | 150 | {%- else %} |
@@ -161,7 +161,7 b" height={{output.metadata['jpeg']['height']}}" | |||
|
161 | 161 | {%- endblock data_jpg %} |
|
162 | 162 | |
|
163 | 163 | {% block data_latex scoped %} |
|
164 |
<div class="output_latex output_subarea{{extra_class |
|
|
164 | <div class="output_latex output_subarea {{extra_class}}"> | |
|
165 | 165 | {{ output.latex }} |
|
166 | 166 | </div> |
|
167 | 167 | {%- endblock data_latex %} |
@@ -177,7 +177,7 b" height={{output.metadata['jpeg']['height']}}" | |||
|
177 | 177 | {%- endblock traceback_line %} |
|
178 | 178 | |
|
179 | 179 | {%- block data_text scoped %} |
|
180 |
<div class="output_text output_subarea{{extra_class |
|
|
180 | <div class="output_text output_subarea {{extra_class}}"> | |
|
181 | 181 | <pre> |
|
182 | 182 | {{ output.text | ansi2html }} |
|
183 | 183 | </pre> |
@@ -185,7 +185,7 b" height={{output.metadata['jpeg']['height']}}" | |||
|
185 | 185 | {%- endblock -%} |
|
186 | 186 | |
|
187 | 187 | {%- block data_javascript scoped %} |
|
188 |
<div class="output_subarea output_javascript{{extra_class |
|
|
188 | <div class="output_subarea output_javascript {{extra_class}}"> | |
|
189 | 189 | <script type="text/javascript"> |
|
190 | 190 | {{ output.javascript }} |
|
191 | 191 | </script> |
General Comments 0
You need to be logged in to leave comments.
Login now