A Python package to convert Markdown text into Notion pages. This module provides functionality to create Notion pages from Markdown text, parse Markdown into Notion blocks, and process inline formatting.
You can install the package using pip:
pip install md2notionpage
Here's a basic example of how to use the md2notionpage
function:
from md2notionpage import md2notionpage
markdown_text = """
# My Page
This is a Notion page created from Markdown content.
"""
title = 'My Notion Page'
parent_page_id = 'YOUR_PARENT_PAGE_ID'
notion_page_url = md2notionpage(markdown_text, title, parent_page_id)
You can create headings using the #
symbol. The number of #
symbols determines the level of the heading:
# Heading Level 1
## Heading Level 2
### Heading Level 3
- Bold Text: You can create bold text using
**
or__
. - Italic Text: You can create italic text using
*
or_
. - Bold and Italic: You can combine bold and italic using
__*
or**_
. Strikethrough: You can strikethrough text using~
.- Inline
Code
: You can create inline code using backticks`
. - Inline Latex: You can create inline latex using
$
.
You can create a Latex block using $$
:
$$
x = \sqrt{y^2 + z^2}
$$
- Unordered List: You can create an unordered list using
-
. - Ordered List: You can create an ordered list using numbers followed by a dot
1.
.
You can create links using [link text](url)
.
You can create indented code using four spaces:
def hello_world():
print("Hello, world!")
You can create a code block using triple backticks:
```python
def hello_world2():
print("Hello, world2!")
```
You can create a blockquote using >
:
> Quote text
You can create tables with or without header rows. They will become LaTeX/KaTeX tables in the Notion page.
| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| Content | Content | Content |
| Content 1.1 | Content 2.1 | Content 3.1 |
| Content 1.2 | Content 2.2 | Content 3.2 |
You can create a horizontal line using three or more dashes ---
.
You can insert images with or without alt text:
![Alt Text](https://raw.githubusercontent.com/markomanninen/md2notion/main/photo-1501504905252-473c47e087f8.jpeg)
Alt gives an image caption in Notion.
![](https://raw.githubusercontent.com/markomanninen/md2notion/main/photo-1501504905252-473c47e087f8.jpeg)
You can create nested lists by indenting sub-items:
- Item 1
- Sub-item 1
- Sub-item 2
- Sub-sub-item 1
- Sub-sub-item 2
- Item 2
Similarly unordered lists are supported.
- notion-client
You must set the NOTION_SECRET
environment variable with your Notion API token.
This package is designed to work with the Notion API and requires proper authentication. Make sure to follow Notion's API documentation to set up your integration.
- Use .env to setup
NOTION_SECRET
andNOTION_PARENT_PAGE_ID
- Run tests:
python -m unittest discover tests
- When tests are ok, commit changes
Change to next version number in setup.py
- Create wheels:
python setup.py sdist bdist_wheel
- Deploy:
python -m twine upload dist/*
This project is licensed under the MIT License. See the LICENSE file for details.