Download the PHP package everyday/html-to-quill without Composer
On this page you can find all versions of the php package everyday/html-to-quill. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package html-to-quill
html-to-quill
html-to-quill is a PHP library for converting an HTML string to Quill deltas.
Installation
html-to-quill can be installed through Composer.
Basic Usage
The HtmlConverter
class provides a simple interface for converting from HTML to Quill Deltas:
Supporting Custom Tag Behaviour
Custom tags can be supported through customer converters. Converters take a DOMNode as an input, and return a DeltaOp. The default converters can be found in src/Converters
Custom converters can be implemented to handle additional behaviour, which are then implemented into an extension of the HtmlConverter.