quill-auto-links
v0.1.3
Published
Automatically convert typed and pasted links to real links in Quill
Downloads
30,015
Readme
Quill Auto Links Module
A module for the Quill Rich Text Editor to
transform http links (typed or pasted) to <a>
tags automatically.
Demo
Usage
import Quill from 'quill';
import AutoLinks from 'quill-auto-links';
Quill.register('modules/autoLinks', AutoLinks);
const quill = new Quill(editor, {
modules: {
autoLinks: true
}
});
Options
paste
Enable link formatting when pasting text - defaults totrue
type
Enable link formatting when typing text - defaults totrue
Examples:
// Enable for pasting and typing
const quill1 = new Quill(editor, {
modules: {
autoLinks: true
}
});
// Disable for pasting and typing
const quill2 = new Quill(editor, {
modules: {
autoLinks: {
paste: false,
type: false
}
}
});
// Disable for pasting, but enable for typing
const quill3 = new Quill(editor, {
modules: {
autoLinks: {
paste: false,
type: true
}
}
});