Automatically convert typed and pasted links to real links in Quill
npm install quill-auto-linksA module for the Quill Rich Text Editor to
transform http links (typed or pasted) to tags automatically.
``javascript
import Quill from 'quill';
import AutoLinks from 'quill-auto-links';
Quill.register('modules/autoLinks', AutoLinks);
const quill = new Quill(editor, {
modules: {
autoLinks: true
}
});
`
- paste Enable link formatting when pasting text - defaults to truetype
- Enable link formatting when typing text - defaults to true
Examples:
`javascript
// 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
}
}
});
``
--------------------------------------------
