MkDocs plugin treating Jupyter notebooks, Python scripts and Markdown files as first-class citizens for documentation with dynamic execution and real-time synchronization
Project description
mkdocs-nbsync
🔄 Stop fighting with notebook documentation!
The Problem: Screenshots break. Exports get forgotten. Code and docs drift apart. 😩
The Solution: One simple syntax that keeps everything in sync:
{#figure-name}
That's it! No more manual exports. No more broken documentation. 🎉
mkdocs-nbsync is a MkDocs plugin that seamlessly embeds Jupyter notebook visualizations in your documentation, solving the disconnect between code development and documentation.
Why Use mkdocs-nbsync?
The Documentation Challenge
Data scientists, researchers, and technical writers face a common dilemma:
- Development happens in notebooks - ideal for experimentation and visualization
- Documentation lives in markdown - perfect for narrative and explanation
- Connecting the two is painful - screenshots break, exports get outdated
Our Solution
This plugin creates a live bridge between your notebooks and documentation by:
- Keeping environments separate - work in the tool best suited for each task
- Maintaining connections - reference specific figures from notebooks
- Automating updates - changes to notebooks reflect in documentation
Key Benefits
-
True Separation of Concerns: Develop visualizations in Jupyter notebooks and write documentation in markdown files, with each tool optimized for its purpose.
-
Intuitive Markdown Syntax: Use standard image syntax with a simple extension to reference notebook figures:
{#figure-id} -
Automatic Updates: When you modify your notebooks, your documentation updates automatically in MkDocs serve mode.
-
Clean Source Documents: Your markdown remains readable and focused on content, without code distractions or complex embedding techniques.
-
Enhanced Development Experience: Take advantage of IDE features like code completion and syntax highlighting in the appropriate environment.
Quick Start
1. Installation
pip install mkdocs-nbsync
2. Configuration
Add to your mkdocs.yml:
plugins:
- mkdocs-nbsync:
src_dir: ../notebooks
3. Mark Figures in Your Notebook
In your Jupyter notebook, identify figures with a comment:
# #my-figure
import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(8, 4))
ax.plot([1, 2, 3, 4], [10, 20, 25, 30])
4. Reference in Markdown
Use standard Markdown image syntax with the figure identifier:
{#my-figure}
The Power of Separation
Creating documentation and developing visualizations involve different workflows and timeframes. When building visualizations in Jupyter notebooks, you need rapid cycles of execution, verification, and modification.
This plugin is designed specifically to address these separation of concerns, allowing you to:
- Focus on code in notebooks without documentation distractions
- Focus on narrative in markdown without code interruptions
- Maintain powerful connections between both environments
Each environment is optimized for its purpose, while the plugin handles the integration automatically.
Contributing
Contributions are welcome! Please open an issue or submit a pull request.
License
This project is licensed under the MIT License.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mkdocs_nbsync-0.2.2.tar.gz.
File metadata
- Download URL: mkdocs_nbsync-0.2.2.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18e1d1ddb3621ec7dc240b68ac43d15c74be8c6395bcaf1b083ee367ce7b1a45
|
|
| MD5 |
20569c52a5ce864eae815984cd1bc805
|
|
| BLAKE2b-256 |
25e2b73954224a26871db7fb6c910092d970816b4fc3cca251151c9d31e25630
|
File details
Details for the file mkdocs_nbsync-0.2.2-py3-none-any.whl.
File metadata
- Download URL: mkdocs_nbsync-0.2.2-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47d23476a9178b0296d570ae13c8c1c2d00690c7ea8823244fe3e5c265fb07ac
|
|
| MD5 |
76b674ee5f63e2d82cc674fe8410b5e8
|
|
| BLAKE2b-256 |
b354b287a826aa5d33e39b936177fd02fcac1dbf060124adf6f4fc6853a6b5da
|