1.1.0 • Published 3 years ago

burdy-web-utils v1.1.0

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
-
Last release
3 years ago

Burdy Web Utils

Powerful utilities to simplify usage of the Burdy on the web.

Instalation

npm i burdy-web-utils

Functionalities

richtextToHtml

A function for converting Richtext (DraftJS) Editor content to plain HTML.

This is forked version of draftjs-to-html draftjs-to-html created by Jyoti Puri.

Usage

import { richtextToHtml } from 'burdy-web-utils';

const rawContentState = BURDY_RICHTEXT_RESPONSE;

const markup = richtextToHtml(
  rawContentState
);