Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
Super simple WYSIWYG editor
Branch: develop
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Less clutter by moving templates into .github Nov 13, 2018
dist Fixes #3174 Apr 17, 2019
examples Set followingToolbar as false by default Dec 19, 2018
grunts Recover version mark. Dec 25, 2017
lang Fixes #3164 Apr 16, 2019
plugin Allow trailing commas for multiline (#3055) Nov 29, 2018
src
test Escape dots in whitelist domains Mar 11, 2019
.agignore Add silver searcher ignore file. Sep 13, 2015
.editorconfig Add .editorconfig Dec 14, 2015
.eslintrc Allow trailing commas for multiline (#3055) Nov 29, 2018
.gitignore Merge branch 'develop' into init-nightwatch Oct 9, 2017
.npmignore ignore non-user files in npm and bower Dec 8, 2015
.travis.yml Bumpup libs Dec 22, 2018
Gruntfile.js Fix CI again. Mar 30, 2019
LICENSE add license Jul 11, 2016
MAINTAIN.md
README.md Remove gemnasium. Oct 28, 2018
index.html Fix broken examples and update to use latest libraries Nov 15, 2018
karma.conf.js Fix CI again. Mar 30, 2019
package.json Fix CI again. Mar 30, 2019
tsconfig.json

README.md

Summernote

Super simple WYSIWYG Editor.

Build Status npm version Coverage Status

Sauce Test Status

Summernote

Summernote is a JavaScript library that helps you create WYSIWYG editors online.

Home page: https://summernote.org

Why Summernote?

Summernote has a few special features:

  • Paste images from clipboard
  • Saves images directly in the content of the field using base64 encoding, so you don't need to implement image handling at all
  • Simple UI
  • Interactive WYSIWYG editing
  • Handy integration with server
  • Supports Bootstrap 3 and 4 integrities
  • Lots of plugins and connectors provided together

Installation and dependencies

Summernote is built on jQuery.

1. Include JS/CSS

Include the following code in the <head> tag of your HTML:

<!-- include libraries(jQuery, bootstrap) -->
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> 
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/css/bootstrap.min.css" />
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.min.js"></script>

<!-- include summernote css/js-->
<link href="summernote.css" rel="stylesheet">
<script src="summernote.js"></script>

2. Target a element

Then place a div tag somewhere in the body tag. This element will be replaced with the summernote editor.

<div id="summernote">Hello Summernote</div>

3. Summernote it!

Finally, run this script after the DOM is ready:

$(document).ready(function() {
  $('#summernote').summernote();
});

For more examples, please visit to homepage.

API

code - get the HTML source code underlying the text in the editor:

var html = $('#summernote').summernote('code');

For more detail about API, please refer to document.

Warning - code injection

The code view allows the user to enter script contents. Make sure to filter/sanitize the HTML on the server. Otherwise, an attacker can inject arbitrary JavaScript code into clients.

For contributing

https://github.com/summernote/summernote/blob/develop/CONTRIBUTING.md

Contacts

License

Summernote may be freely distributed under the MIT license.

You can’t perform that action at this time.