souvikinator / notion-to-md

Convert notion pages, block and list of blocks to markdown (supports nesting and custom parsing)
https://www.npmjs.com/package/notion-to-md
MIT License
1.11k stars 91 forks source link

FIX: Ordered Lists Numbering Continue From Previous List #42

Closed parkuman closed 2 years ago

parkuman commented 2 years ago

Description A little fix for the ordered list numbering continuing from the previous ordered list.

Difference INPUT: List 1 in Notion: 1. apple 2. banana 3. orange

... other content from notion page

List 2 in Notion: 1. car 2. truck 3. bike

OUTPUT BEFORE THESE CHANGES: List 1 in notion-to-md 1. apple 2. banana 3. orange

... other content from notion page

List 2 in notion-to-md 4. apple 5. banana 6. orange

OUTPUT AFTER THESE CHANGES: List 1 in notion-to-md 1. apple 2. banana 3. orange

... other content from notion page

List 2 in notion-to-md 1. apple 2. banana 3. orange