A Strapi v5 plugin that integrates a tiptap rich text editor using [reactjs-tiptap-editor](https://github.com/hunghg255/reactjs-tiptap-editor) as its foundation.
npm install @samemichaeltadele/tiptap-editorbash
npm install @samemichaeltadele/tiptap-editor
`
Configuration
1. Enable the plugin in your Strapi configuration:
`js
// config/plugins.js
module.exports = {
'tiptap-editor': {
enabled: true,
}
};
`
2. Add the field type to your content-type:
`js
// content-types/your-content-type/schema.json
{
"kind": "collectionType",
"collectionName": "your_collection",
"info": {
"singularName": "your-content-type",
"pluralName": "your-content-types",
"displayName": "Your Content Type"
},
"options": {
"draftAndPublish": true
},
"attributes": {
"yourTtype": {
"type": "customField",
"customField": "plugin::tiptap-editor.tiptap-content"
},
}
}
``