---
title: Comprehensive guide to working with Python markdown
published: "2023-11-27"
updated: "2026-08-03"
publisher: Honeybadger
author: Ravgeet Dhillon
category: Python articles
tags:
  - Python
  - Markdown
description: Markdown makes it easy to add syntax to your plain text documents for readability and machine parsing. Read to learn how to work with markdown in Python using the Python markdown package.
url: "https://www.honeybadger.io/blog/python-markdown/"
---

If you use the Internet, you have surely come across the term **Markdown**. Markdown is a lightweight markup language that makes it very easy to write formatted content. It was created by John Gruber and Aaron Swartz in 2004. It uses very easy-to-remember syntax and is therefore used by many bloggers and content writers around the world. Even this blog that you are reading is written and formatted using Markdown.

Markdown is one of the most widely used formats for storing formatted data. It easily integrates with Web technologies, as it can be converted to HTML or vice versa using Markdown compilers. It allows you to write HTML entities, such as headings, lists, images, links, tables, and more without much effort or code. It is used in blogs, content management systems, Wikis, documentation, and many more places.

In this article, you'll learn how to work with Python markdown application using different Python packages, including markdown, front matter, and markdownify.

## Prerequisites

To follow along with this tutorial, you’ll need the following:

- Python v3.x
- Basic understanding of HTML and Markdown

## Setting Up a Project

Before proceeding with the project, you’ll need to set up a project directory to work in.

So, first, open up your terminal, navigate to a path of your choice, and create a project directory (`python-markdown`) by running the following commands in the terminal:

```bash
mkdir python-markdown cd python-markdown
```

Finally, create and activate the virtual environment (`venv`) for your Python project by running the following commands:

```bash
python3 -m venv source venv/bin/activate
```

That’s it. The project setup is complete.

By the way, if you are building Python web apps, we send practical Python, Django, and software engineering articles—no hype, just useful stuff. [Sign up for our newsletter](https://www.honeybadger.io/newsletter/)

## Converting Markdown to HTML in Python

One of the most common operations related to Markdown is converting it to HTML. By doing so, you can write your content in Markdown and then compile it to HTML, which you can then deploy to a CDN or server.

First, install the [python-markdown](https://pypi.org/project/Markdown/) package by running the following command in the terminal:

```bash
pip install markdown
```

Next, at your project’s root directory, create a `main.py` file and add the following code to it:

```python
# 1 import markdown markdown_string = '# Hello World' # 2 html_string = markdown.markdown(markdown_string) print(html_string)
```

In the above code, you are doing the following:

1. Importing the `markdown` module.
2. Converting the markdown (`markdown_string`) to HTML (`html_string`) using the `markdown` method from the `markdown` package.

Finally, save your code and run the `main.py` file by running the following command in the terminal:

```bash
python main.py
```

Once the code execution is complete, you’ll get the HTML output as follows:

![Markdown to HTML.](https://www.honeybadger.io/images/blog/posts/python-markdown/markdown_to_html.png)

You can try a more complex Markdown string like the one in the code below and use it to create HTML:

```python
markdown_string = ''' # Hello World This is a **great** tutorial about using Markdown in [Python](https://python.org). '''
```

In this example, you make use of headings, bold text, and links in Markdown.

![Markdown to HTML.](https://www.honeybadger.io/images/blog/posts/python-markdown/markdown_to_html_complex.png)

## Converting a Markdown File to HTML in Python

Most of the time, you’ll be working with Markdown files rather than Markdown strings. Therefore, it makes sense to learn how to convert a Markdown file to an HTML file.

To do so, first, create a `sample.md` file and add the following code to it:

```markdown
# Hello World This is a **Markdown** file.
```

Next, replace the existing code in the `main.py` file with the following:

```python
import markdown # 1 with open('sample.md', 'r') as f: markdown_string = f.read() # 2 html_string = markdown.markdown(markdown_string) # 3 with open('sample.html', 'w') as f: f.write(html_string)
```

In the above code, you are doing the following:

1. Reading the `sample.md` and storing its content in the `markdown_string` variable.
2. Converting the markdown (`markdown_string`) to HTML (`html_string`) using the `markdown` method from the `markdown` package.
3. Creating a `sample.html` file and writing the HTML (`html_string`) to it.

Finally, save your code and run the `main.py` file by running the following command in the terminal:

```bash
python main.py
```

Once the code execution is complete, you’ll see a `sample.html` file in your project’s root directory:

![Markdown file to HTML file.](https://www.honeybadger.io/images/blog/posts/python-markdown/markdown_to_html_file.png)

## Converting HTML to Markdown in Python

Sometimes, a situation arises where you might want to convert HTML to Markdown. For this purpose, you can use the markdownify package in Python.

First, install the package by running the following command in the terminal:

```python
pip install markdownify
```

Next, replace the existing code in the `main.py` file with the following:

```python
# 1 import markdownify html_string = ''' <h1>Hello World</h1> <p>This is a great tutorial about using Markdown in Python.</p> ''' # 2 markdown_string = markdownify.markdownify(html_string) print(markdown_string)
```

In the above code, you are doing the following:

1. Importing the `markdownify` module.
2. Converting the HTML (`html_string`) to Markdown (`markdown_string`) using the `markdownify` method from the `markdownify` package.

Finally, save your code and run the `main.py` file by running the following command in the terminal:

```bash
python main.py
```

Once the code execution is complete, you’ll get the Markdown output:

![HTML to Markdown.](https://www.honeybadger.io/images/blog/posts/python-markdown/html_to_markdown.png)

If you see the output above, you’ll see the headings (`<h1>`) created with the "underlining" with equal signs (=) instead of starting with hashtags (#). This is because Markdown comes with two styles of headers: **Setext** and **atx**, and by default, the Markdown parser uses Setext-style headers. You configure markdownify to use ATX-style headers by passing the `heading_style='ATX'` parameter to the `markdownify` method.

Markdownify also supports a number of options, including HTML tag stripping, HTML tag conversion, Markdown heading styles, and more.

## Converting an HTML File to Markdown in Python

Previously, we converted a Markdown file to an HTML file. However, sometimes, you might need to convert an HTML file to a Markdown file.

To do so, first, create a `sample.html` file and add the following code to it:

```html
<!DOCTYPE html> <html lang="en"> <body> <h1>Hello World</h1> <p>This is a <strong>HTML</strong> file.</p> <a href="https://honeybadger.io/">Visit Honeybadger</a> </body> </html>
```

Next, replace the existing code in the `main.py` file with the following:

```python
import markdownify # 1 with open('sample.html', 'r') as f: html_string = f.read() # 2 markdown_string = markdownify.markdownify(html_string, heading_style='ATX') # 3 with open('sample.md', 'w') as f: f.write(markdown_string)
```

In the above code, you’re doing the following:

1. Reading the `sample.html` and storing its content in the `html_string` variable.
2. Converting the HTML (`html_string`) to Markdown (`markdown_string`) using the `markdownify` method from the `markdownify` package.
3. Creating a `sample.md` file and writing the Markdown (`markdown_string`) to it.

Finally, save your code and run the `main.py` file by running the following command in the terminal:

```bash
python main.py
```

Once the code execution is complete, you’ll see a `sample.md` file in your project’s root directory as follows:

![HTML file to Markdown file.](https://www.honeybadger.io/images/blog/posts/python-markdown/html_to_markdown_file.png)

## Using Front Matter for Python markdown

In the world of markdown, there are often some variables or metadata associated with a Markdown file. This is known as **front matter**. Front matter data variables are a great way to store extra information about a Markdown file. For example, a blog’s markdown files can have front matter variables like _Title_, _Author_, _Image_, _Published At_, and more.

You can specify front matter at the beginning of a Markdown file by placing the YAML data variables between triple-dashed lines. For example,

```yaml
--- title: Hello World Author: John Doe Published: 2020-01-20 ---
```

In Python, you can parse Markdown front matter with the python-front matter package.

To see this package in action, first, install the package by running the following command in the terminal:

```bash
pip install python-frontmatter
```

Next, add the following front matter to the `sample.md` file:

```yaml
--- title: Hello World date: 2022-01-20 ---
```

Next, replace the existing code in the `main.py` file with the following:

```python
# 1 import frontmatter # 2 data = frontmatter.load('sample.md') # 3 print(data.keys()) print(data['title']) print(data['date'])
```

In the above code, you are doing the following:

1. Importing the `frontmatter` module.
2. Reading the `sample.md` file using the `load` method from the `frontmatter` package and storing the result in the `data` variable.
3. Accessing the front matter variables with the help of `data.keys()`. Since `data` is a dictionary, you can also access the individual keys (`data['title']` or `data['date']`).

Finally, save your code and run the `main.py` file by running the following command in the terminal:

```bash
python main.py
```

Once the code execution is complete, you’ll get the output of the front matter variables as follows:

![Markdown front matter data.](https://www.honeybadger.io/images/blog/posts/python-markdown/frontmatter_data.png)

## Updating Markdown Front Matter in Python

Sometimes, a situation arises where you might want to convert HTML to Markdown. For this purpose, you can use the Python’s [markdownify](https://pypi.org/project/markdownify/0.4.0/) package.

You can also update the existing front matter data variables or add new ones using the front matter package.

To do so, first, replace the existing code in the `main.py` file with the following:

```python
import frontmatter # 1 data = frontmatter.load('sample.md') # 2 data['author'] = 'John Doe' # 3 data['title'] = 'Bye World' # 4 updated_data = frontmatter.dumps(data) # 5 with open('sample.md', 'w') as f: f.write(updated_data)
```

In the above code, you are doing the following:

1. Reading (`frontmater.load()`) the `sample.md` file.
2. Adding a new key (`author`) to the front matter `data` variable and assigning it a value (`John Doe`).
3. Updating the existing key (`title`) and assigning it a new value (`Bye World`).
4. Serializing (`frontmatter.dumps()`) the `data` variable to a _string_ and storing the result in the `updated_data` variable.
5. Updating the `sample.md` file by writing the updated Markdown (`updated_data`) to it.

Finally, save your code and run the `main.py` file by running the following command in the terminal:

```bash
python main.py
```

Once the code execution is complete, check the `sample.md` file for the updated front matter data, as follows:

![Updated Markdown front matter data.](https://www.honeybadger.io/images/blog/posts/python-markdown/frontmatter_data_update.png)

## Using Python Markdown Extensions

The python-markdown package also supports extensions that allow you to modify and/or extend the default behavior of the Markdown parser. For example, to generate a table of contents (TOC), you can use the toc extension. There are [other extensions](https://python-markdown.github.io/extensions/), as well, which you can make use of based on your requirements.

To create a TOC for your Markdown content, first, replace the existing code in the `main.py` file with the following:

```python
import markdown # 1 markdown_string = ''' [TOC] # Hello World This is a **great** tutorial about using Markdown in [Python](https://python.org). # Bye World ''' # 2 html_string = markdown.markdown(markdown_string, extensions=['toc']) print(html_string)
```

In the above code, you are doing the following:

1. Specifying the `[TOC]` string in your Markdown (`markdown_string`) where you want to add the table of contents.
2. Adding the `extensions` parameter to the `markdown` method from the `markdown` package and specifying the extensions (`['toc']`) you want to use.

Finally, save your code and run the `main.py` file by running the following command in the terminal:

```bash
python main.py
```

Once the code execution is complete, you’ll get the HTML output with the Table of Contents as a list:

![Python markdown table of Contents.](https://www.honeybadger.io/images/blog/posts/python-markdown/table_of_contents.png)

## where do you go from here?

Learning to work with Markdown can help you in lots of ways. Using this guide as the basis, you can automate many tasks, including maintaining and manipulating Markdown files. For example, you can write a script that creates an index for all of your Python markdown files in your blog or organize your markdown files into different directories based on the front matter data variables, such as tags/categories.

[Honeybadger](https://www.honeybadger.io/for/python/), which is a cloud-based system for real-time monitoring, error tracking, and exception-catching, also uses Markdown to maintain our documentation. In case you are interested, we wrote a blog post in which we talk about how we [built a documentation workflow in Rails](https://www.honeybadger.io/blog/documentation-worklow-rails/).

---

## Try Honeybadger for FREE

Intelligent logging, error tracking, and Just Enough APM™ in one dev-friendly platform. Find and fix problems before users notice.

[Start free trial](https://app.honeybadger.io/users/sign_up)

[See plans and pricing](https://www.honeybadger.io/plans/)
