1.0.2 • Published 3 years ago

prosemirror-paste-link v1.0.2

Weekly downloads
-
License
ISC
Repository
gitlab
Last release
3 years ago

prosemirror-paste-link

ProseMirror plugin handling paste case when:

  • the editor has selected text
  • the pasted text is an URL

In that case a mark with the URL will be added to the selected text, instead of overwriting the selection with the URL text.

Usage

import pasteLinkPlugin from "prosemirror-paste-link";
/*...*/
const state = EditorState.create<typeof imageSchema>({
    /*...*/
    plugins: [
        /*...*/
        pasteLink,
    ],
});