mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-12 00:19:02 +08:00
1.1 KiB
1.1 KiB
Tiptap for PHP
Introduction
A PHP package to work with Tiptap content. You can transform Tiptap-compatible JSON to HTML, and the other way around, sanitize your content, or just modify it.
Installation
You can install the package via composer:
composer require ueberdosis/tiptap-php
Usage
The PHP package mimics large parts of the JavaScript package. If you know your way around Tiptap, the PHP syntax will feel familiar to you. Here is an easy example:
(new Tiptap\Editor)
->setContent('<p>Example Text</p>')
->getDocument();
// Returns:
// ['type' => 'doc', 'content' => …]
Documentation
There’s a lot more the PHP package can do. Check out the repository on GitHub.