tiptap-php icon indicating copy to clipboard operation
tiptap-php copied to clipboard

A PHP package to work with Tiptap content

Results 30 tiptap-php issues
Sort by recently updated
recently updated
newest added

Hi! I've been using the old PHP packages and not had the time to update yet. However, every time I run composer update I get an abandoned message - which...

Hello, it would be cool to have an "example" directory with an example page that displays a tiptap form built with tiptap-php. I just discovered Tiptap and I don't know...

When adding the Shiki syntax highlighter, I missed pulling the theme option from the node options, this PR fixes that bug. Thanks again for all the background work to get...

This throws an exception: ```php (new Editor)->setContent(null)->getText(); ```

help wanted

I’d like to get rid of the `wrapper()` method. It’s used - for example - to move the content of list items in a paragraph. I’m afraid we’d need to...

I'd like to be able to limit the output to a specific number of characters while retaining JSON or HTML. For instance, I'd like to be able to limit the...

I have a custom node with the following code: ```php public function renderHTML($node, $HTMLAttributes = []) { return [ 'table', [ 'data-layout-section' => 'true', 'border' => '0', 'cellpadding' => '0',...

Thanks for this package! I want to have an ability to specify `content` for the `Document` node explicitly. I want it to be `block+ emailFooter`. If I'm not missing something,...

Tiptap stores an ordered lists [start attribute as `start`](https://github.com/ueberdosis/tiptap/blob/2b6e4e369130466387ab1136e10ad64f6e37df5b/packages/extension-ordered-list/src/ordered-list.ts#L39) (which is the [correct attribute name](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol#start)), but this package is looking for an `order` attribute instead. This PR changes it to...

I save content to my database with tiptap editor, the output json from the editor is this: ``` '{"type":"doc","content":[{"type":"orderedList","attrs":{"start":2},"content":[{"type":"listItem","content":[{"type":"paragraph","content":[{"type":"text","text":"Test text here "}]}]}]}]}'; ``` However, when this is passed into tiptap-php...