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

feat: add markdown for equation and inline equations #66

Closed zirkelc closed 1 year ago

zirkelc commented 1 year ago

This PR implements markdown formatting of block equations and inline equations.

Inline equations are enclosed between single dollar $ symbols and block equations are enclosed by double dollar $$ symbols:

$inline$

$$
block
$$

This is supported by remark-math from unified.js and by GitHub Markdown.

souvikinator commented 1 year ago

Awesome! Thanks for the contribution. By the end of the week, this should be live in the upcoming release.