Live rendering of python code using matplotlib
Project description
Mkdocs-Matplotlib
Mkdocs-Matplotlib is a plugin for mkdocs which allows you to automatically generate matplotlib figures and add them to your documentation. Simply write the code as markdown into your documention.
Quick Start
This plugin can be installed with pip
pip install mkdocs-matplotlib
To enable this plugin for mkdocs you need to add the following lines to your mkdocs.yml
.
plugins:
- mkdocs_matplotlib
To render a code cell using matplotlib you simply have to add the comment # mkdocs: render
at the top of the cell.
# mkdocs: render
import matplotlib.pyplot as plt
import numpy as np
xpoints = np.array([1, 8])
ypoints = np.array([3, 10])
plt.plot(xpoints, ypoints)
In addition you can add the comment # mkdocs: hidecode
to hide the code and and # mkdocs: hideoutput
to hide the output image of the cell.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for mkdocs_matplotlib-0.10.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5c3337b4b3588d6f7bbe059db85cd9d05dcaf72f71281938d8fea7df090d16a |
|
MD5 | 27f2ed7bff0d9719f79d8f413040d54a |
|
BLAKE2b-256 | 4411e189173d0ba2061a3f551779c8fb92aedccb37dfece51951c9a54e571b6e |