Show More
@@ -111,11 +111,13 b' unknown type {{ cell.type }}' | |||
|
111 | 111 | {%- endblock stream_stderr %} |
|
112 | 112 | |
|
113 | 113 | {% block data_svg -%} |
|
114 | <div class="output_svg output_subarea"> | |
|
114 | 115 | {%- if output.svg_filename %} |
|
115 | 116 | <img src="{{output.svg_filename | posix_path}}" |
|
116 | 117 | {%- else %} |
|
117 | 118 | {{ output.svg }} |
|
118 | 119 | {%- endif %} |
|
120 | </div> | |
|
119 | 121 | {%- endblock data_svg %} |
|
120 | 122 | |
|
121 | 123 | {% block data_html -%} |
@@ -125,6 +127,7 b' unknown type {{ cell.type }}' | |||
|
125 | 127 | {%- endblock data_html %} |
|
126 | 128 | |
|
127 | 129 | {% block data_png %} |
|
130 | <div class="output_png output_subarea"> | |
|
128 | 131 | {%- if output.png_filename %} |
|
129 | 132 | <img src="{{output.png_filename | posix_path}}" |
|
130 | 133 | {%- else %} |
@@ -137,9 +140,11 b" width={{output.metadata['png']['width']}}" | |||
|
137 | 140 | height={{output.metadata['png']['height']}} |
|
138 | 141 | {%- endif %} |
|
139 | 142 | > |
|
143 | </div> | |
|
140 | 144 | {%- endblock data_png %} |
|
141 | 145 | |
|
142 | 146 | {% block data_jpg %} |
|
147 | <div class="output_jpeg output_subarea"> | |
|
143 | 148 | {%- if output.jpeg_filename %} |
|
144 | 149 | <img src="{{output.jpeg_filename | posix_path}}" |
|
145 | 150 | {%- else %} |
@@ -152,6 +157,7 b" width={{output.metadata['jpeg']['width']}}" | |||
|
152 | 157 | height={{output.metadata['jpeg']['height']}} |
|
153 | 158 | {%- endif %} |
|
154 | 159 | > |
|
160 | </div> | |
|
155 | 161 | {%- endblock data_jpg %} |
|
156 | 162 | |
|
157 | 163 | {% block data_latex %} |
General Comments 0
You need to be logged in to leave comments.
Login now