Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lqez/summernote-ext-print

Print plugin for summernote
https://github.com/lqez/summernote-ext-print

Last synced: 11 days ago
JSON representation

Print plugin for summernote

Awesome Lists containing this project

README

        

Print plugin for Summernote
===========================

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

DEMO PAGE :

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']]
],
...
});
```

4. (Optional) Summernote does not use [Font Awesome](http://fontawesome.io/) by default. But by adding font awesome files on the page, you can see the printer icon inside the print button.

OPTIONS
-------

- `print.stylesheetUrl`
- summernote-ext-print uses(inherit) styles/css of original document by default. But if you want to use different styles for printing, set a url of stylesheet file on this.

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

AUTHOR
------
[@lqez](https://github.com/lqez/)

LICENSE
-------
MIT