0.1.3 • Published 6 years ago

quill-auto-links v0.1.3

Weekly downloads
10,012
License
MIT
Repository
github
Last release
6 years ago

Quill Auto Links Module

A module for the Quill Rich Text Editor to transform http links (typed or pasted) to <a> tags automatically.

Demo

Plunker

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 to true
  • type Enable link formatting when typing text - defaults to true

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
    }
  }
});

Small Improvements