Tiptap Editor 3.0 Beta is out. Start here

DetailsSummary extension

VersionDownloads

The Details extension enables you to use the <details> HTML tag in the editor. This is great to show and hide content.

Install

npm install @tiptap/extension-details-summary

This extension requires the Details and DetailsContent node.

Settings

HTMLAttributes

Custom HTML attributes that should be added to the rendered HTML tag.

DetailsSummary.configure({
  HTMLAttributes: {
    class: 'my-custom-class',
  },
})