parse draft js content state into html
npm install draft-to-htmlIn progress
``jsx
import convertToHtml from 'draft-to-html'
...
convertToHtml(contentState, options)
`
`js``
{
parseStyle: string => HTMLElement,
parseEntity: (entity: {
type: DraftEntityType,
mutability: DraftEntityMutability,
data: ?{[key: string]: any},
}) => HTMLElement,
parseBlock: ContentBlock => HTMLElement
}