Demonstration of live plots

Here's a cell with plots generated by the mkdocs site-generation process:

# mkdocs: render
import matplotlib.pyplot as plt
import numpy as np

xpoints = np.linspace(1.1, 10, 100)
ypoints = np.log(xpoints)

plt.plot(xpoints, ypoints, ".-")