Create plugin

This example shows how to create a simple plugin. Click on the content to see the plugin button on the toolbar. See more about how to create plugins.

Code

<!DOCTYPE html>
<html>
<head>
    <title>Redactor X</title>
    <meta charset="utf-8">

    <!-- css -->
    <link rel="stylesheet" href="/your-dist-path/redactorx.min.css" />
</head>
<body>
    <!-- element -->
    <textarea id="entry">
        <p>Content</p>
    </textarea>

    <!-- js -->
    <script src="/your-dist-path/redactorx.min.js"></script>


    <!-- plugin code with fontawesome icon -->
    <script>
    RedactorX.add('plugin', 'myplugin', {
        start: function() {
            this.app.toolbar.add('mybutton', {
                title: 'My Button',
                icon: '<i class="fa fa-superpowers"></i>',
                command: 'myplugin.toggle'
            });
        },
        toggle: function(params, button) {
            alert('Button Toggle');
        }
    });
    </script>


    <!-- call -->
    <script>
    RedactorX('#entry', {
        plugins: ['myplugin']
    });
    </script>
</body>
</html>