0.0.6 • Published 10 months ago

inline-attachment-next v0.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

📎 Inline Attachment Next (WIP)

NPM Version NPM Downloads License

A modern port of Inline Attachment

Installation

npm i inline-attachment-next

Usage

  • Input / Textarea

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

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

10 months ago

0.0.5

10 months ago

0.0.4

10 months ago

0.0.3

10 months ago

0.0.2

10 months ago