kerwanp / notion-render

A Javascript library to transform Notion API RichText object into HTML

Home Page:https://notion-render-docs.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


Notion Render

Transform Notion Rich Text into HTML, JSX and more.


⚠ Pre-release

This project is currently in pre-release, you can use it but some features are lacking and core components are still able to change.

Do not hesitate to open an issue to provide your feedback, report bugs and to propose new features.

πŸ”¨ Install

$ npm install @notion-render/client
$ yarn add @notion-render/client

πŸš€ Get started

import { Client } from '@notionhq/notion';
import { NotionRenderer } from '@notion-render/client';

const client = new Client({
  auth: process.env.NOTION_TOKEN,
});

const renderer = new NotionRenderer();

const { results } = await client.blocks.children.list({
  block_id: '<page_id>',
});

const html = renderer.render(...results);

βš› Renderers

Renderer Status
HTML πŸ”Ά In progress
Markdown ❌ Planned

🎲 Blocks

Block Type Supported Notion client required Available in Notes
Text βœ… Yes @notion-render/client <span>
Bookmark βœ… Yes @notion-render/client Uses url-metadata to generate bookmark
Breadcrumb ❌ Missing Embedded preview of external URL
Bulleted List Item βœ… Yes @notion-render/client <ul><li>
Callout βœ… Yes @notion-render/client <blockquote>
Child database ❌ Missing
Child page ❌ Missing
Code βœ… Yes @notion-render/client
Column List βœ… Yes ⚠ Yes @notion-render/client <div>
Column βœ… Yes ⚠ Yes @notion-render/client <div>
Divider βœ… Yes @notion-render/client <hr>
Embed ❌ Missing
Equations ❌ Missing
Files ❌ Missing
Heading 1 βœ… Yes @notion-render/client <h1>
Heading 2 βœ… Yes @notion-render/client <h2>
Heading 3 βœ… Yes @notion-render/client <h3>
Toggle Heading 1 βœ… Yes ⚠ Yes @notion-render/client <details><summary><h1> Requires Notion client
Toggle Heading 2 βœ… Yes ⚠ Yes @notion-render/client <details><summary><h2> Requires Notion client
Toggle Heading 3 βœ… Yes ⚠ Yes @notion-render/client <details><summary><h3> Requires Notion client
Image βœ… Yes @notion-render/client <fig><img>
Link preview ❌ Missing
Mention βœ… Yes @notion-render/client <span> Returns plain text (e.g. @John Doe)
Numbered List Item βœ… Yes @notion-render/client <ol><li>
Paragraph βœ… Yes @notion-render/client <p>
PDF ❌ Missing
Quote βœ… Yes @notion-render/client <blockquote>
Synced block ❌ Missing
Table πŸ”Ά Not fully supported @notion-render/client <table> Header row and column not supported
Table Row πŸ”Ά Not fully supported @notion-render/client <tr> Header row and column not supported
Table of contents ❌ Missing
Template ❌ Deprecated
To do βœ… Yes @notion-render/client <ul><li>
Toggle βœ… Yes ⚠ Yes @notion-render/client <details>
Video ❌ Missing

πŸ”§ Extend

Custom renderer

You can create custom renderers to handle custom Notion plugins and override existing blocks.

import { NotionRenderer, createBlockRenderer } from '@syneki/notion-render';

const paragraphRenderer = createBlockRenderer<ParagraphBlockObjectResponse>(
  'paragraph',
  (data, renderer) => {
    return `<p>${renderer.render(...data.paragraph.rich_text)}</p>`;
  }
);

const renderer = new NotionRenderer({
  renderers: [paragraphRenderer],
});

Contributing

I'd love for you to contribute to this project. You can request new features by creating an issue, or submit a pull request with your contribution.

Licence

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

A Javascript library to transform Notion API RichText object into HTML

https://notion-render-docs.vercel.app

License:Apache License 2.0


Languages

Language:TypeScript 61.9%Language:SCSS 30.8%Language:JavaScript 6.8%Language:Shell 0.5%