Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 721 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 721 Bytes

notion-hugo

Convert notion page content to markdown

Usage

Quickstart

pip install notion-hugo

from notion import Notion2Markdown

token = os.environ['token']
page_id = os.environ['page_id']

print(Notion2Markdown(token, page_id).parse())