Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/axilleasiv/angular-quill
Angular directive for Quill WYSIWYG editor
https://github.com/axilleasiv/angular-quill
Last synced: about 6 hours ago
JSON representation
Angular directive for Quill WYSIWYG editor
- Host: GitHub
- URL: https://github.com/axilleasiv/angular-quill
- Owner: axilleasiv
- License: mit
- Created: 2014-10-23T11:21:02.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-13T21:39:26.000Z (almost 10 years ago)
- Last Synced: 2024-10-09T20:39:24.271Z (30 days ago)
- Size: 148 KB
- Stars: 21
- Watchers: 5
- Forks: 13
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
angular-quill
================Angular Quill is an angular directive for the Quill editor. http://quilljs.com/
Usage
--------------1. Include the quill libraries
2. In your angular application register angular-quill as a dependency.
3. Add the necessary html to view the editor.Registration
```js
// Angular Registration
angular.module('app', ['angular-quill']);```
Bare Minimum Html
```html
```With Options
```html
```You can pass options directly to Quill editor by specifying them as the value of the `quill` attribute.
Bower Installation
--------------
```js
bower install angular-quill
```