File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -185,8 +185,8 @@ def render_output(out):
185
185
if include_imgs :
186
186
if d := _g ('image/jpeg' ): return f'<img src="data:image/jpeg;base64,{ d } "/>'
187
187
if d := _g ('image/png' ): return f'<img src="data:image/png;base64,{ d } "/>'
188
+ if d := _g ('image/svg+xml' ): return d
188
189
if d := _g ('text/plain' ): return _pre (d )
189
- if d := _g ('image/svg+xml' ): return d
190
190
191
191
return ''
192
192
Original file line number Diff line number Diff line change 1077
1077
" if include_imgs:\n " ,
1078
1078
" if d := _g('image/jpeg'): return f'<img src=\" data:image/jpeg;base64,{d}\" />'\n " ,
1079
1079
" if d := _g('image/png'): return f'<img src=\" data:image/png;base64,{d}\" />'\n " ,
1080
+ " if d := _g('image/svg+xml'): return d\n " ,
1080
1081
" if d := _g('text/plain'): return _pre(d)\n " ,
1081
- " if d := _g('image/svg+xml'): return d\n " ,
1082
1082
" \n " ,
1083
1083
" return ''\n " ,
1084
1084
" \n " ,
You can’t perform that action at this time.
0 commit comments