Lukas Leitsch

Results 8 comments of Lukas Leitsch

Vielen Dank. Mein Ziel war es eine Checkliste auszuarbeiten, mit der man einen kompletten Überblick bekommt und die im ersten Schritt auch gar nicht so ins Detail geht. Die einzelen...

I have the same issue. On my local machine everything works fine. But on the production server the parsing breaks. The local machine and the production server have the same...

I hope I've found the cause. PR is created #155 DOMDocument trim the new line characters in some PHP environments.

The fork from @carstenschroeder works great in the current Version of Home Assistant. https://github.com/carstenschroeder/hassio-addons

@pvi-github My fork adds basically composer support and I guess I changed a bit the structure for my needs.

> Thanks for your answer... do you meet the array offset issue mentioned in this issue ? Sorry, you issue mentioned above don't occur in my fork. But I only...

I have the same issue with the `sanitize` method. Example: ```php $string = "An examplelist item alist item b"; $sanitizedHtml = (new Tiptap\Editor)->sanitize($string); // output: An examplelist item alist item...

The workaround from @Coding-Kiwi in https://github.com/ueberdosis/tiptap-php/issues/2#issuecomment-1546706151 solves the issue for me at this moment: ```php class TipTapListItem extends \Tiptap\Nodes\ListItem { public static function wrapper($DOMNode) { return null; } } $string...