ipymd icon indicating copy to clipboard operation
ipymd copied to clipboard

Support SVG images

Open grst opened this issue 8 years ago • 0 comments

Test case:

%config InlineBackend.figure_format = 'svg'
n = 256
X = np.linspace(-np.pi,np.pi,n,endpoint=True)
Y = np.sin(2*X)

fig, ax = plt.subplots( nrows=1, ncols=1 )
ax.plot (X, Y+1, color='green', alpha=1.00)
ax.plot (X, Y-1, color='green', alpha=1.00)
plt.show()

grst avatar Nov 16 '17 16:11 grst