Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
notion-render
Advanced tools
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.
$ npm install @notion-render/client
$ yarn add @notion-render/client
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);
Renderer | Status |
---|---|
HTML | 🔶 In progress |
Markdown | ❌ Planned |
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> | |
❌ 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 |
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],
});
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.
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.
FAQs
Unknown package
The npm package notion-render receives a total of 0 weekly downloads. As such, notion-render popularity was classified as not popular.
We found that notion-render demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.