Code cell met ipython 3 in een md file
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 2*np.pi, 100)
y = np.sin(x)
plt.figure()
plt.plot(x,y,'k.')
plt.show()

Some caption
Code cell met ipython 3 in een md file
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 2*np.pi, 100)
y = np.sin(x)
plt.figure()
plt.plot(x,y,'k.')
plt.show()
Some caption