Home

Awesome

Summernote List Of Links

Maintainability

NOTE : Requires Bootstrap

This plugin adds a button to let you choose from an external list of links, provided as json.

Options :

Usage

$(document).ready(function() {
    $('#summernote').summernote({
        height: 300,
        toolbar: [
            ['style', ['bold', 'italic', 'underline', 'link', 'list-of-links', 'codeview']]
        ],
        listOfLinks: {
          listUrl: 'data.json',
          title: 'List of websites'
        }
    });
});

/data.json

[
  ["http://www.google.fr", "Google"],
  ["http://www.facebook.com", "Facebook"]
]

Credits

Example copied from https://github.com/tylerecouture/summernote-add-text-tags