JSPM

  • Created
  • Published
  • Downloads 1977560
  • Score
    100M100P100Q178759F
  • License BSD-3-Clause

Your powerful, rich text editor

Package Exports

  • quill
  • quill/assets/icons/align-center.svg
  • quill/assets/icons/align-left.svg
  • quill/assets/icons/align-right.svg
  • quill/assets/icons/comment.svg
  • quill/assets/icons/float-center.svg
  • quill/assets/icons/float-full.svg
  • quill/assets/icons/float-left.svg
  • quill/assets/icons/float-right.svg
  • quill/assets/icons/header.svg
  • quill/assets/icons/link.svg
  • quill/assets/icons/redo.svg
  • quill/assets/icons/undo.svg
  • quill/blots/block
  • quill/blots/break
  • quill/blots/embed
  • quill/blots/inline
  • quill/core
  • quill/core/emitter
  • quill/core/logger
  • quill/core/module
  • quill/core/quill
  • quill/core/selection
  • quill/core/theme
  • quill/dist/quill
  • quill/dist/quill.bubble.css
  • quill/dist/quill.core
  • quill/dist/quill.core.css
  • quill/dist/quill.js
  • quill/dist/quill.min
  • quill/dist/quill.min.js
  • quill/dist/quill.snow.css
  • quill/formats/align
  • quill/formats/background
  • quill/formats/blockquote
  • quill/formats/bold
  • quill/formats/code
  • quill/formats/color
  • quill/formats/direction
  • quill/formats/font
  • quill/formats/header
  • quill/formats/image
  • quill/formats/indent
  • quill/formats/italic
  • quill/formats/link
  • quill/formats/list
  • quill/formats/script
  • quill/formats/size
  • quill/formats/strike
  • quill/formats/underline
  • quill/formats/video
  • quill/modules/formula
  • quill/modules/keyboard
  • quill/modules/syntax
  • quill/modules/toolbar
  • quill/quill
  • quill/themes/base
  • quill/themes/bubble
  • quill/themes/snow
  • quill/ui/color-picker
  • quill/ui/icon-picker
  • quill/ui/icons
  • quill/ui/picker
  • quill/ui/tooltip

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (quill) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Quill Rich Text Editor

Quill Logo

QuickstartDocumentationDevelopmentContributingInteractive Playground

Build Status Version Downloads

Test Status

Quill is a modern rich text editor built for compatibility and extensibility. It was created by Jason Chen and Byron Milligan and open sourced by Salesforce.com.

To get started, check out the Quill website for documentation, guides, and live demos!

Quickstart

Instantiate a new Quill object with a css selector for the div that should become the editor.

<!-- Include Quill stylesheet -->
<link href="https://cdn.quilljs.com/1.0.0/quill.snow.css" rel="stylesheet">

<!-- Create the toolbar container -->
<div id="toolbar">
  <button class="ql-bold">Bold</button>
  <button class="ql-italic">Italic</button>
</div>

<!-- Create the editor container -->
<div id="editor">
  <p>Hello World!</p>
</div>

<!-- Include the Quill library -->
<script src="https://cdn.quilljs.com/1.0.0/quill.js"></script>

<!-- Initialize Quill editor -->
<script>
  var editor = new Quill('#editor', {
    modules: { toolbar: '#toolbar' },
    theme: 'snow'
  });
</script>

Take a look at the Quill website for more documentation, guides and live playground!

Download

CDN

<!-- Main Quill library -->
<script src="//cdn.quilljs.com/1.0.0/quill.js"></script>
<script src="//cdn.quilljs.com/1.0.0/quill.min.js"></script>

<!-- Theme included stylesheets -->
<link href="//cdn.quilljs.com/1.0.0/quill.snow.css" rel="stylesheet">
<link href="//cdn.quilljs.com/1.0.0/quill.bubble.css" rel="stylesheet">

<!-- Core build with no theme, formatting, non-essential modules -->
<link href="//cdn.quilljs.com/1.0.0/quill.core.css" rel="stylesheet">
<script src="//cdn.quilljs.com/1.0.0/quill.core.js"></script>

Community

Get help or stay up to date.

License

BSD 3-clause