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.08k stars 89 forks source link

Quotes with extra content #103

Open LandonSchropp opened 8 months ago

LandonSchropp commented 8 months ago

I'm running into a small issue with notion quotes when the quotes contain extra content. Take this example:

Screenshot 2023-12-29 at 2 22 16 PM

I'd expect this to be rendered as this:

> SMART is a proven goal-setting methodology.
>
> - **Specific:** Clearly defined and detailed.
> - **Measurable:** Easy to determine whether the goal was accomplished.
> - **Attainable:** Something you can accomplish with hard work.
> - **Relevant:** Aligned with your other goals.
> - **Time-based:** Linked to a time frame.

Instead, it's coming through as this:

> SMART is a proven goal-setting methodology.

        - **Specific:** Clearly defined and detailed.
        - **Measurable:** Easy to determine whether the goal was accomplished.
        - **Attainable:** Something you can accomplish with hard work.
        - **Relevant:** Aligned with your other goals.
        - **Time-based:** Linked to a time frame.

This causes my renderer to interpret this content as a code block instead.