Skip to content

Latest commit

History

History
38 lines (27 loc) 路 1.1 KB

README.md

File metadata and controls

38 lines (27 loc) 路 1.1 KB

馃搸 Inline Attacher (WIP)

NPM Version NPM Downloads License

A modern port of Inline Attachment

Installation

npm i inline-attacher

Usage

  • Input / Textarea

    import { attach } from "inline-attacher";
    
    const textarea = document.querySelector("textarea");
    attach(textarea, { uploadUrl: "https://example.com/upload" });
  • CodeMirror v6

    import { EditorView } from "codemirror";
    import { inlineAttachmentExtension } from "inline-attacher";
    
    const editor = new EditorView({
      extensions: [
        inlineAttachmentExtension({ uploadUrl: "https://example.com/upload" }),
      ],
      parent: document.body,
    });