medienbaecker/kirby-tiptap

Kirby Tiptap

Fund package maintenance!
medienbaecker

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 0

Open Issues: 0

Language:Vue

Type:kirby-plugin

0.0.15 2025-02-27 14:21 UTC

This package is auto-updated.

Last update: 2025-03-24 09:43:11 UTC


README

A powerful, user-friendly Tiptap field for Kirby.

Kirby Tiptap editor with formatting toolbar and example content demonstrating KirbyTags, special character visibility, and the tiptapText() method functionality.

Features

  • 🌏 Best of both worlds: Uses (and highlights) KirbyTags for images/links while providing WYSIWYG formatting
  • πŸ“¦ Supports all standard Kirby field features like required, default, placeholder, counter, disabled, help, size, spellcheck and minlength/maxlength
  • πŸ€“ Smart text handling with intuitive soft hyphen (-) and non-breaking space (_) replacements, and visible special characters
  • πŸ”§ Configurable buttons with customizable heading levels and a content sanitizer that automatically removes formatting you don't want
  • πŸ›Ό Inline mode for paragraph-free content with buttons being disabled automatically
  • 🧠 One method to rule them all with tiptapText() handling UUID resolution, smartypants, automatic inline mode and more
  • ✨ Intuitive drag & drop support for pages and files with intelligent spacing
  • πŸ‘€ Custom field preview showing formatted text in structure fields
  • πŸ”— Improved link handling with a dialog that automatically picks the right KirbyTag ((link: ), (email: ), (file: )or (tel: )) and a paste handler that adds link tags to the selected text
  • 🌈 Custom highlights via a regular expression config option, making it possible to e.g. highlight long words
  • πŸ“‹ Abstracted JSON structure for easy content manipulation with features like offsetHeadings

Usage

Blueprints

Available buttons

tiptap:
  buttons:
    - headings:
        - 1
        - 2
        - 3
    - "|"
    - bold
    - italic
    - strike
    - code
    - codeBlock
    - "|"
    - link
    - image
    - "|"
    - bulletList
    - orderedList

Available options

tiptap:
  inline: true # remove block elements like paragraphs
  counter: false # disable character counter
  size: small # small, medium, large, huge or the default auto
  spellcheck: false # disable spellcheck
  pretty: true # pretty-print JSON in content file
  required: true
  placeholder: My placeholder
  default: My default content
  disabled: true
  help: My help
  maxlength: 10
  minlength: 10

Template

// Basic usage
echo $page->text()->tiptapText();

// With heading level offset
echo $page->text()->tiptapText([
  'offsetHeadings' => 1
]);

Roadmap

Coming soon

  • Image uploads
  • Custom buttons

Under consideration

Motivation

Put simply, I'm not happy with any of the existing options.

Textarea field

Being a purist myself, this has long been my favorite. This delightfully simple field comes with quite a few drawbacks, though. Among others:

  1. Pressing formatting buttons only inserts characters. This can lead to My # heading or My - list.
  2. No undo functionality for formatting
  3. No configurable headlines
  4. No syntax highlighting, making it hard for my clients to understand.
  5. Links don't insert (email: ), (file: ), (tel: ) tags, only (link: )

Writer field

The Writer field is what Kirby uses for the default text blocks. That's where it shines but in my experience it's not a replacement for a standalone content field.

  1. Experimental permalinksToUrls() method pretty much unavoidable
  2. No size option
  3. No HTML allowed
  4. No highlighting for KirbyTags
  5. Not possible to add images/videos/…
  6. Complex nodes/marks differentiation, UX for lists
  7. Redundant email button
  8. Massive issues with copying text containing gender stars (getkirby/kirby#3138)
  9. Losing content