Skip to content

danleyb2/rich-text-editor

Repository files navigation

rich-text-editor

Rich Text Editor

Node.js Package

A Rich Text Editor Web Component

Features

  • Tiny

Usage

  1. load module

    <!-- Bottom of body -->
    <script type="module" src="https://unpkg.com/@danleyb2/rich-text-editor@0.0.3/dist/es6-unbundled/index.js"></script>
  2. use component

    <rich-text-editor></rich-text-editor>
  3. get value

    let v = document.querySelector('rich-text-editor').value;
    console.log(v);