DetailsContent extension
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-content
This extension requires the Details
and DetailsSummary
node.
Settings
HTMLAttributes
Custom HTML attributes that should be added to the rendered HTML tag.
DetailsContent.configure({
HTMLAttributes: {
class: 'my-custom-class',
},
})