Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
datocms-structured-text-to-html-string
Advanced tools
Convert DatoCMS Structured Text field to HTML string
HTML renderer for the DatoCMS Structured Text field type.
Using npm:
npm install datocms-structured-text-to-html-string
Using yarn:
yarn add datocms-structured-text-to-html-string
import { render } from 'datocms-structured-text-to-html-string';
render({
schema: 'dast',
document: {
type: 'root',
children: [
{
type: 'paragraph',
children: [
{
type: 'span',
value: 'Hello world!',
},
],
},
],
},
}); // -> <p>Hello world!</p>
render({
type: 'root',
children: [
{
type: 'paragraph',
content: [
{
type: 'span',
value: 'Hello',
marks: ['strong'],
},
{
type: 'span',
value: ' world!',
marks: ['underline'],
},
],
},
],
}); // -> <p><strong>Hello</strong><u> world!</u></p>
You can pass custom renderers for nodes and text as optional parameters like so:
import { render, renderNodeRule } from 'datocms-structured-text-to-html-string';
import { isHeading } from 'datocms-structured-text-utils';
const structuredText = {
type: 'root',
children: [
{
type: 'heading',
level: 1,
content: [
{
type: 'span',
value: 'Hello world!',
},
],
},
],
};
const options = {
renderText: (text) => text.replace(/Hello/, 'Howdy'),
customNodeRules: [
renderNodeRule(
isHeading,
({ adapter: { renderNode }, node, children, key }) => {
return renderNode(`h${node.level + 1}`, { key }, children);
},
),
],
customMarkRules: [
renderMarkRule('strong', ({ adapter: { renderNode }, children, key }) => {
return renderNode('b', { key }, children);
}),
],
};
render(document, options);
// -> <h2>Howdy world!</h2>
Last, but not least, you can pass custom renderers for itemLink
, inlineItem
, block
as optional parameters like so:
import { render } from 'datocms-structured-text-to-html-string';
const graphqlResponse = {
value: {
schema: 'dast',
document: {
type: 'root',
children: [
{
type: 'paragraph',
children: [
{
type: 'span',
value: 'A ',
},
{
type: 'itemLink',
item: '344312',
children: [
{
type: 'span',
value: 'record hyperlink',
},
],
},
{
type: 'span',
value: ' and an inline record: ',
},
{
type: 'inlineItem',
item: '344312',
},
],
},
{
type: 'block',
item: '812394',
},
],
},
},
blocks: [
{
id: '812394',
image: { url: 'http://www.datocms-assets.com/1312/image.png' },
},
],
links: [{ id: '344312', title: 'Foo', slug: 'foo' }],
};
const options = {
renderBlock({ record, adapter: { renderNode } }) {
return renderNode('figure', {}, renderNode('img', { src: record.image.url }));
},
renderInlineRecord({ record, adapter: { renderNode } }) {
return renderNode('a', { href: `/blog/${record.slug}` }, record.title);
},
renderLinkToRecord({ record, children, adapter: { renderNode } }) {
return renderNode('a', { href: `/blog/${record.slug}` }, children);
},
};
render(document, options);
// -> <p>A <a href="/blog/foo">record hyperlink</a> and an inline record: <a href="/blog/foo">Foo</a></p>
// <figure><img src="http://www.datocms-assets.com/1312/image.png" /></figure>
FAQs
Convert DatoCMS Structured Text field to HTML string
The npm package datocms-structured-text-to-html-string receives a total of 6,764 weekly downloads. As such, datocms-structured-text-to-html-string popularity was classified as popular.
We found that datocms-structured-text-to-html-string 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.