Quill Autoformat
Module for transforming and formatting text as you type or paste in Quill. Using RegExp to find and trigger transformations for text such as links, mentions, hashtags or emojis. Out of the box support for:
- Links
- Hashtags
- Mentions
Note: Requires Quill 2.0
Usage
To add quill-autoformat to your Quill, simply add the javascript after quill or import it in your project. Use the provided quill-formats or define your own parchments.
... ... ...
Transforms
You can specify as many transforms as you like, just give each transform a unique name. Three transforms are enabled by default; hashtag, mention and link. Just set the default types to false to disable them or change any property you like to a custom value.
Each transform may have the following properties:
transform: trigger: RegExp // RegExp for matching text input characters to trigger the match. Defaults to /./ which is matching any character find: RegExp // Global RegExp to search for in the text extract: RegExp // Additional RegExp to finetune and override the found text match transform: String || Function // String or function passed to String.replace() to rewrite find/extract results insert: String || ... // Insert name string or embed insert object. format: String || ... // Format name string or attributes object.
Reference
Default Options
Specify one option or more to override defaults.
var editor = '#editor-container' modules: autoformat: hashtag: trigger: /[\s.,;:!?]/ find: /#[^\s.,;:!?]+/i extract: /#/i transform: '$1' insert: 'hashtag' mention: trigger: /[\s.,;:!?]/ find: /@[^\s.,;:!?]+/i extract: /@/i transform: '$1' insert: 'mention' link: trigger: /[\s]/ find: /https?:\/\/[\S]+|/gi { // value == match[0], noProtocol == match[1] return noProtocol ? "http://" + value : value; } format: 'link' ;