Remove format

Removes inline format from the selected text.

Click on an editable block and then you will see the Remove Format icon on the toolbar added with the plugin.

Code

<!DOCTYPE html>
<html>
    <head>
        <title>Article Editor</title>
        <meta charset="utf-8">

        <!-- css -->
        <link rel="stylesheet" href="/your-article-dist-path/article-editor.css" />
    </head>
    <body>
        <!-- element -->
        <textarea id="entry">...</textarea>

        <!-- js -->
        <script src="/your-article-dist-path/article-editor.js"></script>
        <script src="/your-article-dist-path/plugins/removeformat.js"></script>

        <!-- call -->
        <script>
        ArticleEditor('#entry', {
            plugins: ['removeformat'],
            css: '/your-article-dist-path/'
        });
        </script>
    </body>
</html>