Editing your site

Jupyter Notebooks (.ipynb)

Publish Jupyter Notebooks as blog posts or pages. Learn how to convert .ipynb files to Markdown for data science and research content.

Data scientists and researchers can publish Jupyter Notebooks directly as pages on their Ownable site.

Usage

  1. Create your Notebook Create a Jupyter Notebook (.ipynb) with your code, charts, and analysis.

  2. Add Front Matter The first cell of your notebook must be a Raw NBConvert cell containing your YAML front matter.

    ---
    title: My Analysis
    date: 2023-10-25
    summary: An analysis of X using Python.
    ---
  3. Convert to Markdown Use the nbconvert tool to convert your notebook to a Markdown file suitable for Hugo.

    jupyter nbconvert my-notebook.ipynb --to markdown --output-dir content/blog/

Images generated by your notebook (like Matplotlib plots) will be automatically extracted and linked in the resulting Markdown file.

Was this page helpful?

From the makers of

© 2026 Lore Labs.

On this page