Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 525 Bytes

README.md

File metadata and controls

25 lines (23 loc) · 525 Bytes

wysiwyg_id

A simple WYSIWYG editor (In Development)

Usage:

Run the below command after modification

npm run dev

The output file will be generated in /dist folder saved as main.js. You can include this script, and css (style.css) file in your homepage to use it as mentioned below.

<html>
    <head>
        <script src="/path/to/main.js"></script>
    </head>
    <body>
        ...
        <div class="editor"></div>
        ...
        <div class="editor"></div>
        ...
    </body>
</html>