Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Releases: deanblackborough/php-quill-renderer

List support

31 Aug 14:15
Compare
Choose a tag to compare
  • Added support for ordered and unordered lists.
  • Updated README, notes on version 2.00.0

Paragraph support

06 Jun 21:33
Compare
Choose a tag to compare
  • Added support for paragraph breaks, converts double newlines from quill insert into a new p tag, the
    feature is not yet bulletproof, I need to take another look at my parser.

Autoload

25 Apr 18:38
Compare
Choose a tag to compare
  • Updated composer.json psr4 definition

Image support and PSR4

24 Apr 20:21
Compare
Choose a tag to compare
  • I'm now only testing against PHP 7+. [Tests]
  • Added tests for setting attributes. [Tests]
  • Switched to PSR4
  • Minor change to API if using Quill (Render) class, after the PSR4 change I didn't like Quill/Quill.
  • Basic support for images (outputting the base64 directly via src="")

Set the HTML tags to use for Quill attributes

19 Apr 21:56
Compare
Choose a tag to compare
  • Added the ability to set the HTML tag for the following Quill attributes, bold, italic, script, strike and underline. [Feature]
  • Minor rework to Quill class to allow options to be set, parse() was being called before the new option value was being set.
  • Updated readme, now shows direct usage example.

Bugfixes

12 Apr 21:30
Compare
Choose a tag to compare
  • The parser code no longer checks the default HTML tags, it checks against the type of tag in case a tag is updated.
  • Removed redundant code

Simplified API

27 Mar 15:49
Compare
Choose a tag to compare
  • I simplified the usage of renderer ready for additional output formats, instantiate Quill class to use renderer and then simply call render().
  • I have finally moved to PHPUnit 6.

Note: The Quill class does not expose the ability to override options, that will be added in the future.

Headings

23 Mar 12:50
Compare
Choose a tag to compare
  • Added support for headings. [Feature]
  • Newline and paragraph support removed. [Regression]

Script:Sub and Scipt:Super

10 Mar 17:47
Compare
Choose a tag to compare
  • Added support for Quill script:sub and script:super, issue raised by @ajaymeena

Links

06 Mar 00:52
Compare
Choose a tag to compare
  • Added support for links. [Feature]
  • Refactoring, simplified how attributes are replaced.
  • Additional tests.