Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dennissuitters/summernote-pagebreak

Add a Page-Break button to the Summernote Toolbar
https://github.com/dennissuitters/summernote-pagebreak

page-break plugin summernote summernote-plugins wysiwyg

Last synced: 22 days ago
JSON representation

Add a Page-Break button to the Summernote Toolbar

Awesome Lists containing this project

README

        

# summernote-pagebreak

This Plugin adds a Page-Break button to the Summernote toolbar that when used adds page-breaks for printing. The editor will show where your page-breaks are, but using the styles below they won't show on pages, but will work when printing the page.

By selecting, or highlighting the block of text you want the page-break to appear after will insert a page-break div after the selected area. If used without selecting a content section will place the page-break at the end of the content.

### Installation

#### 1. A note for using this plugin.
If your stylesheet does not contain a `.page-break` class you can use the styles below, there's different ways you can add the class to your pages.

You can add the class directly into your stylesheet that gets included into your pages as below:
````css
@media all {
.page-break {
display: none;
}
}

@media print {
.page-break {
display: block;
page-break-before: always;
}
}
````
Or you can add them directly to your page/s like below:
````html

@media all {
.page-break {
display: none;
}
}

@media print {
.page-break {
display: block;
page-break-before: always;
}
}

````

#### 2. Include JS

Include the following code after Summernote:

```html

```

#### 3. Supported languages

Currently available in English!

#### 4. Summernote options

```javascript
$('.summernote').summernote({
toolbar:[
['pagebreak',['pagebreak']], // The Button
['style',['style']],
['font',['bold','italic','underline','clear']],
['fontname',['fontname']],
['color',['color']],
['para',['ul','ol','paragraph']],
['height',['height']],
['table',['table']],
['insert',['media','link','hr']],
['view',['fullscreen','codeview']],
['help',['help']]
],
});
```

#### 5. Check out our other Summernote Plugins via our main Github page.
- [Diemen Design](https://github.com/DiemenDesign/)