Home

Awesome

Print plugin for Summernote

This plugin allows summernote prints its document, not whole web page.

DEMO PAGE : http://lqez.github.io/summernote-ext-print/

USAGE

  1. If you're using bower, than just type bower install summernote-ext-print or download and copy summernote-ext-print to your own directory.

  2. Embed summernote-ext-print.js into your page.

  3. Configure the toolbar of summernote like below.

$('#summernote').summernote({
    toolbar: [
        ...
        ['misc', ['print']]
    ],
    ...
});
  1. (Optional) Summernote does not use Font Awesome by default. But by adding font awesome files on the page, you can see the printer icon inside the print button.

OPTIONS

$('#summernote').summernote({
    toolbar: [
        ...
        ['misc', ['print']]
    ],
    print: {
        'stylesheetUrl': 'url_of_stylesheet_for_printing'
    }
    ...
});

AUTHOR

@lqez

LICENSE

MIT