A JupyterLab extension and nbconvert preprocessor/exporter for HTML export with cell style metadata overrides
Project description
Jupyter Export HTML Style
A JupyterLab extension and nbconvert preprocessor/exporter that allows custom cell-level styling when exporting notebooks to HTML, Slides and PDF.
This extension was written to help with using Jupyterlab for authoring teaching materials. The motivation was dealing with cases where you need to have some initialisation code (for example to apply custom css to the notebook's IPython rendering) but do not want those code cells to be visible in exported slides, html or pdf versions. With this extension you can tweak the css in the exported notebook from within the notebook environment. Similarly, it embeds images and local stylesheets into the exported html so that they can be pasted directly into virtual learning environments. The Blackboard Ultra VLE in particular does not like internal anchor links in its html, so there is a notebook level control of whether these should be excluded.
Features
- ๐จ Custom Cell Styling: Apply CSS styles to individual cells via metadata
- ๐ฏ Input/Output Styling: Separate styles for cell inputs and outputs
- ๐ท๏ธ Custom CSS Classes: Add custom CSS classes to cells, inputs, and outputs for use with external stylesheets
- ๐ Notebook-Level Styling: Add custom styles and stylesheets to the entire notebook
- ๐ฆ Resource Embedding: Automatically embeds local CSS files as inline styles for self-contained HTML
- ๐ผ๏ธ Image Embedding: Embeds images as base64 data URIs for self-contained HTML exports
- ๐ง nbconvert Integration: Seamlessly integrates with nbconvert's export pipeline
- ๐ PDF Export with Styles: Export to PDF via HTML with all custom styles applied
- ๐ญ Reveal.js Slides with Styles: Create presentation slides with custom cell styling
- ๐ Easy to Use: Simple metadata-based configuration
Installation
Using pip
pip install jupyter-export-html-style
Using conda
conda install -c phygbu jupyter-export-html-style
From source
git clone https://github.com/gb119/jupyter_export_html_style.git
cd jupyter_export_html_style
pip install -e .
Quick Start
1. Add Style Metadata to Cells
In your Jupyter notebook, add style metadata to cells:
{
"metadata": {
"style": {
"background-color": "#f0f0f0",
"border": "2px solid #333",
"padding": "10px"
}
}
}
2. Export with Custom Styles
HTML Export
From the command line:
jupyter nbconvert --to styled_html notebook.ipynb
Or using Python:
from jupyter_export_html_style import StyledHTMLExporter
exporter = StyledHTMLExporter()
(body, resources) = exporter.from_filename('notebook.ipynb')
PDF Export (with Styles)
Export to PDF via HTML with all custom styles applied:
From the command line:
jupyter nbconvert --to styled_webpdf notebook.ipynb
Or using Python:
from jupyter_export_html_style import StyledWebPDFExporter
exporter = StyledWebPDFExporter()
(body, resources) = exporter.from_filename('notebook.ipynb')
Note: PDF export requires Playwright to be installed:
pip install nbconvert[webpdf]
playwright install chromium
Reveal.js Slides Export (with Styles)
Export to Reveal.js presentation slides with all custom styles applied:
From the command line:
jupyter nbconvert --to styled_slides notebook.ipynb
Or using Python:
from jupyter_export_html_style import StyledSlidesExporter
exporter = StyledSlidesExporter()
(body, resources) = exporter.from_filename('notebook.ipynb')
Note: For slides to work properly, cells should have slideshow metadata. In JupyterLab, use View โ Activate Presentation Mode to set slide types for cells.
You can also customize the Reveal.js theme and other options:
exporter = StyledSlidesExporter(
reveal_theme='moon',
reveal_transition='fade',
reveal_number='c/t'
)
JupyterLab Integration
In JupyterLab, the exporters are available in the File โ Save and Export Notebook As... menu with user-friendly names:
- HTML (with styles) - Export to HTML with custom cell and notebook styles
- PDF via HTML (with styles) - Export to PDF via HTML with custom styles applied
- Reveal.js slides (with styles) - Export to Reveal.js presentation slides with custom styles
These menu entries correspond to the styled_html, styled_webpdf, and styled_slides exporters used in the command line examples above.
Visual Examples
Want to see what the styling looks like? Check out our Visual Examples Gallery in the documentation, which includes screenshots and live examples of:
- ๐จ Cell-level styling with highlights, borders, and gradients
- ๐ฅ๐ค Input/output styling with separate colors and themes
- ๐ท๏ธ Custom CSS classes using external stylesheets
- ๐ Notebook-level styling for consistent, professional documents
- โจ Comprehensive demos combining multiple techniques
All example notebooks and their exported HTML files are available in the examples directory.
Usage Examples
Cell-Level Styling
Highlighting Important Cells
{
"style": {
"background-color": "#fff9c4",
"border": "2px dashed #fbc02d"
}
}
Error/Warning Styling
{
"style": {
"background-color": "#ffebee",
"border-left": "5px solid #f44336"
}
}
Custom CSS Strings
{
"style": "background: linear-gradient(to right, #667eea 0%, #764ba2 100%); color: white; padding: 15px;"
}
Input and Output Styling
Style the input and output areas of cells separately:
Input Styling
{
"input-style": {
"background-color": "#f5f5f5",
"border-left": "4px solid #2196f3",
"padding": "10px"
}
}
Output Styling
{
"output-style": {
"background-color": "#e8f5e9",
"border": "1px solid #4caf50",
"font-family": "monospace"
}
}
Combined Cell, Input, and Output Styles
{
"style": {
"margin": "20px 0",
"border-radius": "8px"
},
"input-style": {
"background-color": "#fce4ec",
"color": "#880e4f"
},
"output-style": {
"background-color": "#e8f5e9",
"font-family": "monospace"
}
}
Custom CSS Classes
Apply custom CSS classes to cells and their components using the class, input-class, and output-class metadata. These classes are added to the HTML elements alongside the standard JupyterLab classes, allowing you to use external stylesheets or define custom styles in the notebook-level metadata.
Cell-Level Classes
Add custom CSS classes to an entire cell:
{
"class": "highlight-important warning-cell"
}
This adds the specified classes to the cell's <div> element, e.g.:
<div class="jp-Cell jp-CodeCell jp-Notebook-cell highlight-important warning-cell">
Input and Output Classes
Add custom classes to input and output areas separately:
{
"input-class": "code-highlight",
"output-class": "result-highlight"
}
Combined Classes and Styles
You can use both custom classes and inline styles together:
{
"class": "important-cell",
"style": {
"margin": "20px 0"
},
"input-class": "code-section",
"input-style": {
"border-left": "4px solid #2196f3"
}
}
Using Custom Classes with External Stylesheets
Define your styles in a CSS file and reference them in the notebook metadata:
custom-styles.css:
.highlight-important {
background-color: #fff9c4;
border: 2px solid #fbc02d;
}
.code-highlight {
background-color: #f5f5f5;
font-size: 1.1em;
}
.result-highlight {
background-color: #e8f5e9;
border-left: 4px solid #4caf50;
}
Notebook metadata:
{
"metadata": {
"stylesheet": "custom-styles.css"
}
}
Cell metadata:
{
"class": "highlight-important",
"input-class": "code-highlight",
"output-class": "result-highlight"
}
Notebook-Level Styling
Add custom styles and stylesheets that apply to the entire notebook. Add these to the notebook metadata (not cell metadata):
Note: Local or relative CSS file paths will be automatically embedded as inline styles in the exported HTML, creating self-contained files. Remote URLs (http:// or https://) will remain as external
<link>tags.
Custom Inline Styles
{
"metadata": {
"style": ".jp-Cell { box-shadow: 0 2px 4px rgba(0,0,0,0.1); } body { font-family: Arial, sans-serif; }"
}
}
External Stylesheets
Single stylesheet (local file):
{
"metadata": {
"stylesheet": "custom-theme.css"
}
}
Single stylesheet (remote URL):
{
"metadata": {
"stylesheet": "https://example.com/custom-theme.css"
}
}
Multiple stylesheets (mixed local and remote):
{
"metadata": {
"stylesheet": [
"local-styles.css",
"https://fonts.googleapis.com/css2?family=Roboto&display=swap",
"https://example.com/custom-theme.css"
]
}
}
Combined Notebook Styles
{
"metadata": {
"style": "body { max-width: 1200px; margin: 0 auto; }",
"stylesheet": ["local-theme.css", "https://fonts.googleapis.com/css2?family=Inter&display=swap"]
}
}
Controlling Header Anchor Links
By default, the HTML exporter adds anchor links (ยถ) to headings in markdown cells, allowing users to link directly to specific sections. You can control this behavior using the anchors metadata field:
Disable anchor links:
{
"metadata": {
"anchors": false
}
}
Explicitly enable anchor links (this is the default):
{
"metadata": {
"anchors": true
}
}
Note: When anchor links are disabled, headings will not include the clickable ยถ symbol or the ID attribute, making them cleaner but non-linkable.
Reveal.js Slides Styling
When exporting to Reveal.js slides, all the same styling options work:
Styling Individual Slides
{
"metadata": {
"slideshow": {
"slide_type": "slide"
},
"style": {
"background": "linear-gradient(135deg, #667eea 0%, #764ba2 100%)",
"color": "white"
}
}
}
Styling Slide Content
You can style the input and output areas of code cells in slides:
{
"metadata": {
"slideshow": {
"slide_type": "slide"
},
"input-style": {
"font-size": "1.2em",
"background-color": "#2d2d2d"
},
"output-style": {
"border-left": "4px solid #4CAF50"
}
}
}
Customizing Reveal.js Options
You can customize the Reveal.js presentation settings:
From the command line:
jupyter nbconvert --to styled_slides notebook.ipynb \
--SlidesExporter.reveal_theme=moon \
--SlidesExporter.reveal_transition=fade \
--SlidesExporter.reveal_scroll=true
Or in Python:
from jupyter_export_html_style import StyledSlidesExporter
exporter = StyledSlidesExporter(
reveal_theme='moon',
reveal_transition='fade',
reveal_scroll=True,
reveal_number='c/t'
)
output, resources = exporter.from_filename('notebook.ipynb')
Available reveal.js themes include: black, white, league, beige, sky, night, serif, simple, solarized, blood, moon.
Available transitions include: none, fade, slide, convex, concave, zoom.
Building from Source
Building Python Wheels
pip install build
python -m build
The wheel and source distribution will be created in the dist/ directory.
Building Conda Packages
conda install conda-build
conda build conda.recipe
The conda package will be built in your conda-bld directory.
Documentation
Full documentation is available at https://gb119.github.io/jupyter_export_html_style/
Development
Setting Up Development Environment
# Clone the repository
git clone https://github.com/gb119/jupyter_export_html_style.git
cd jupyter_export_html_style
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install in development mode
pip install -e ".[dev,docs]"
Running Tests
pytest
Code Quality
# Format code
black jupyter_export_html_style
# Lint code
ruff check jupyter_export_html_style
# Type check
mypy jupyter_export_html_style
Project Structure
jupyter_export_html_style/
โโโ jupyter_export_html_style/ # Main Python package
โ โโโ __init__.py # Package initialization
โ โโโ preprocessor.py # nbconvert preprocessor
โ โโโ exporters/ # Exporters sub-package
โ โ โโโ __init__.py # Exporters package initialization
โ โ โโโ html.py # Custom HTML exporter
โ โ โโโ slides.py # Reveal.js slides exporter
โ โ โโโ webpdf.py # WebPDF exporter
โ โโโ templates/ # Jinja2 templates for exporters
โ โโโ styled/ # HTML exporter templates
โ โโโ styled_reveal/ # Slides exporter templates
โ โโโ webpdf/ # WebPDF exporter templates
โโโ tests/ # Test suite
โ โโโ test_exporter.py
โ โโโ test_slides_exporter.py
โ โโโ test_webpdf_exporter.py
โ โโโ test_preprocessor.py
โ โโโ test_integration.py
โโโ docs/ # Documentation
โ โโโ source/ # Sphinx documentation source
โ โ โโโ index.md
โ โ โโโ installation.md
โ โ โโโ usage.md
โ โ โโโ api.md
โ โ โโโ contributing.md
โ โโโ Makefile # Documentation build (Unix)
โ โโโ make.bat # Documentation build (Windows)
โโโ conda.recipe/ # Conda build recipe
โ โโโ meta.yaml # Conda package metadata
โโโ .github/ # GitHub configuration
โ โโโ workflows/ # CI/CD workflows
โ โโโ build.yml # Build and test workflow
โ โโโ docs.yml # Documentation build workflow
โโโ pyproject.toml # Project metadata and build configuration
โโโ README.md # This file
โโโ LICENSE # MIT License
โโโ .gitignore # Git ignore patterns
Contributing
Contributions are welcome! Please see CONTRIBUTING.md for details.
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
- Built on top of nbconvert
- Designed for use with JupyterLab
Support
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Documentation: GitHub Pages
Citation
If you use this project in your research, please cite:
@software{jupyter_export_html_style,
author = {Burnell, Gavin},
title = {Jupyter Export HTML Style},
year = {2026},
url = {https://github.com/gb119/jupyter_export_html_style}
}
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 jupyter_export_html_style-0.1.1.tar.gz.
File metadata
- Download URL: jupyter_export_html_style-0.1.1.tar.gz
- Upload date:
- Size: 57.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30adde9ed4cf85b52fc71e48fb19ed7ce30d0ddf294a91f9ada2fc12def9a6f6
|
|
| MD5 |
c3620dad7a9abaf42878c585841196fd
|
|
| BLAKE2b-256 |
e5ede7c1f0541705a3bd4aed7b5084919353bd3ab21db6a8435eb132acdd7423
|
File details
Details for the file jupyter_export_html_style-0.1.1-py3-none-any.whl.
File metadata
- Download URL: jupyter_export_html_style-0.1.1-py3-none-any.whl
- Upload date:
- Size: 28.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c02eace48894921f7506410907b15d90286767049f615d764e343e688d3e230a
|
|
| MD5 |
2e9070a21e6691fae6e061a2add50e21
|
|
| BLAKE2b-256 |
9787cc94f3b1ef7079592139ae68e68424dc684e86fe0ce43a8c645ee66bb88b
|