draft-to-html
v0.0.1
Published
parse draft js content state into html
Downloads
153
Readme
draft-to-html
In progress
Usage:
import convertToHtml from 'draft-to-html'
...
convertToHtml(contentState, options)
Options:
{
parseStyle: string => HTMLElement,
parseEntity: (entity: {
type: DraftEntityType,
mutability: DraftEntityMutability,
data: ?{[key: string]: any},
}) => HTMLElement,
parseBlock: ContentBlock => HTMLElement
}