Skip to content

LeadcodeDev/notion-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🧱 Notion parser

(async () => {
  const token = 'secret_api_token'
  const notionClient = new NotionClient(token, '2022-02-22')

  const pageId: string = 'pageId'
  const page = await notionClient.getPage(pageId)
  const blocs = await notionClient.getBlocks(pageId)

  const options: HtmlConfig = {
    separator: '\n\n'
  }

  const html = blocs.reduce((acc: string, block) => acc += block.render(options) , '')

  console.log(html)
})()

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published