Print

This is a plugin that shows how to add a button to the toolbar and call the print window.

Click the printer icon on the toolbar to open the print window.

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/print.js"></script>

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