Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 799 Bytes

Readme.md

File metadata and controls

32 lines (20 loc) · 799 Bytes

Markdown to Prismic RichText

For when you're importing a bunch of markdown into a prismic richtext field. Based on the import docs from Prismic.io.

Usage

yarn add @gijsbotje/md-to-prismic-richtext
// or
npm i @gijsbotje/md-to-prismic-richtext
import convert from '@gijsbotje/md-to-prismic-richtext';

const richText = convert(yourMarkdown);

// for example use prismic-dom to render
RichText.asHtml(richText);

Development

yarn test --watch

Big thanks to ueno-llc for creating markdown-to-prismic-richtext. This is a direct copy of that package, with a fix for code blocks.