<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Quill - Your powerful rich text editor]]></title><description><![CDATA[Quill - Your powerful rich text editor]]></description><link>http://github.com/dylang/node-rss</link><generator>GatsbyJS</generator><lastBuildDate>Wed, 11 Jan 2023 15:03:38 GMT</lastBuildDate><item><title><![CDATA[The State of Quill and 2.0]]></title><description><![CDATA[The 2.0 branch of Quill has officially been opened and development commenced. One design principle Quill embraces is to first make it…]]></description><link>https://quilljs.comhttps://medium.com/@jhchen/the-state-of-quill-and-2-0-fb38db7a59b9</link><guid isPermaLink="false">https://quilljs.comhttps://medium.com/@jhchen/the-state-of-quill-and-2-0-fb38db7a59b9</guid><pubDate>Wed, 20 Sep 2017 18:00:00 GMT</pubDate></item><item><title><![CDATA[Announcing Quill 1.0]]></title><description><![CDATA[Quill 1.0 has arrived. It was just two years ago that Quill made its public debut as an open source project. Today, it can be found in applications and products of all sizes, ranging from personal projects and promising startups, to established public companies. Quill is designed as an easy to use editor, to support content creation across the web. It is built on top of consistent and predictable constructs, exposed through a powerful API. With coverage across both ends of the complexity spectrum, Quill aims to be the defacto rich text editor for the web.

In the 111 releases, Quill has iterated relentlessly towards this goal. It has stabilized its API, moved essential internal implementations into customizable modules, and exposed its document model for users to define and add entirely new formats and content.

New FeaturesParchmentWebsiteWhat's NextGetting StartedCredits]]></description><link>https://quilljs.com/blog/announcing-quill-1-0/</link><guid isPermaLink="false">https://quilljs.com/blog/announcing-quill-1-0/</guid><pubDate>Mon, 05 Sep 2016 18:00:00 GMT</pubDate></item><item><title><![CDATA[Quill 1.0 Release Candidate... Released!]]></title><description><![CDATA[Today Quill enters its highly anticipated 1.0 release candidacy. Through the 11 beta releases, over 300 reported bugs were fixed, and almost 1000 commits were made. Thank you to all contributors who pitched in, in ways small and large, isolated and numerous, either reporting issues, committing code, or otherwise helping out the community! The API should now be considered stable, with only backwards compatible bug fixes to look forward to. No additional new features are planned until after the official 1.0 release.]]></description><link>https://quilljs.com/blog/quill-1-0-release-candidate-released/</link><guid isPermaLink="false">https://quilljs.com/blog/quill-1-0-release-candidate-released/</guid><pubDate>Wed, 17 Aug 2016 18:00:00 GMT</pubDate></item><item><title><![CDATA[Quill 1.0 Beta Release]]></title><description><![CDATA[Today Quill is ready for its first beta preview of 1.0. This is the biggest rewrite to Quill since its inception and enables many new possibilities not available in previous versions of Quill, nor any other editor. The code is as always available on Github and through npm: npm install quill@1.0.0-beta.0


The skeleton of a new documentation site is also being built out at beta.quilljs.com. Whereas the current site focuses on being a referential resource, the new site will also be a guide to provide insight on approaching different customization goals. There is also an interactive playground to try out various configurations and explore the API.]]></description><link>https://quilljs.com/blog/quill-1-0-beta-release/</link><guid isPermaLink="false">https://quilljs.com/blog/quill-1-0-beta-release/</guid><pubDate>Mon, 02 May 2016 18:00:00 GMT</pubDate></item><item><title><![CDATA[Are We There Yet (to 1.0)?]]></title><description><![CDATA[When Quill laid out its 1.0 roadmap, core to its journey was the development of a new document model called Parchment. Today a beta release of Parchment is being made available on Github and NPM. What this means is its design and API is reasonably stable and the adventurous can now take an early look. The latest Quill source is already using Parchment to implement its formatting and content capabilities, and its integration would be a helpful example of Parchment in action. Of course, this is in addition to Parchment’s own documentation.]]></description><link>https://quilljs.com/blog/are-we-there-yet-to-1-0/</link><guid isPermaLink="false">https://quilljs.com/blog/are-we-there-yet-to-1-0/</guid><pubDate>Sun, 13 Mar 2016 18:00:00 GMT</pubDate></item><item><title><![CDATA[The Road to 1.0]]></title><description><![CDATA[Quill launched with the ambitious goal of becoming the rich text editor for the web, being both easy to use for drop in use cases, and powerful enough for complex ones. Its current API is core to those goals. In the past months, much effort has been placed into providing even greater means for customization, particularly the editor's contents. With this nearing completion, Quill is approaching its 1.0 coming of age.

Parchment

A full introduction and guide to Parchment is still forthcoming, but in short it is a new document model for Quill. An editor's document model is an important abstraction over the DOM that allows the editor and API users to reason about its contents through a much simpler yet more expressive interface than directly interacting with the browser. For Quill, this enables an elegant solution to the longstanding problem of format customization.]]></description><link>https://quilljs.com/blog/the-road-to-1-0/</link><guid isPermaLink="false">https://quilljs.com/blog/the-road-to-1-0/</guid><pubDate>Mon, 14 Sep 2015 18:00:00 GMT</pubDate></item><item><title><![CDATA[Quill v0.19 - No More Iframes]]></title><description><![CDATA[Customizability is core to Quill's ethos and the new v0.19 release is a big step towards fulfilling that mission. In previous versions Quill utilized an iframe to contain the editor. This unfortunately prevented expected browser behaviors and made it difficult for developers to access and extend Quill[^1]. Its removal is the biggest change in v0.19 and some rippling effects are expected. They, and other changes for v0.19, are summarized here. Styles

With iframes gone it is now much easier to customize the styling of the Quill editor and unecessary for Quill to do so on your behalf in most cases. This leads to a few changes:

You can now pass false into the style config to prevent Quill from injecting any <style> tags. No change is necessary if the default behavior is preferred, but this added option makes it easier and more efficient for those that prefer to completely control styling with stylesheets. For this latter route, quill.base.css is now included in releases and the CDN.]]></description><link>https://quilljs.com/blog/quill-v0-19-no-more-iframes/</link><guid isPermaLink="false">https://quilljs.com/blog/quill-v0-19-no-more-iframes/</guid><pubDate>Wed, 05 Nov 2014 18:00:00 GMT</pubDate></item><item><title><![CDATA[Upgrading to Rich Text Deltas]]></title><description><![CDATA[The new rich text type is now live and being used in Quill v0.18.0. It is a big step towards 1.0 and will be the way documents and changes are represented going forward. In most cases this update is non-disruptive and an upgrade can be a simple increment of the version number[^1]. However, if you happened to be storing the old Delta format, here's a short guide on how to migrate.

The main relevant differences between the old and new Deltas are:

Explicit deletes - We need to go through the old Delta, find the implied deletes and insert explicit delete operations into the new DeltaSupport for embeds - If we see the hacky representation of embeds, replace with the new representation]]></description><link>https://quilljs.com/blog/upgrading-to-rich-text-deltas/</link><guid isPermaLink="false">https://quilljs.com/blog/upgrading-to-rich-text-deltas/</guid><pubDate>Sat, 18 Oct 2014 17:00:00 GMT</pubDate></item><item><title><![CDATA[A New Delta]]></title><description><![CDATA[Part of providing a complete API in Quill is providing events for when and what changes occur in the editor. Those changes are currently represented by a Delta object, which aims to be intuitive, human-readable, and expressive for any change or document that might need to represented. Over the past few weeks I’ve been working on a new format that better fulfills those goals and addresses the challenges in the current format. Documentation for the new Delta format can be found in its own Github repository but I will go over some of the rationale behind some of the changes in this post.]]></description><link>https://quilljs.com/blog/a-new-delta/</link><guid isPermaLink="false">https://quilljs.com/blog/a-new-delta/</guid><pubDate>Sun, 28 Sep 2014 17:00:00 GMT</pubDate></item><item><title><![CDATA[An Offical CDN for Quill]]></title><description><![CDATA[Quill now has an offical Content Distribution Network so you can have access to a reliable, high-speed host for the library. To include a…]]></description><link>https://quilljs.com/blog/an-official-cdn-for-quill/</link><guid isPermaLink="false">https://quilljs.com/blog/an-official-cdn-for-quill/</guid><pubDate>Mon, 11 Aug 2014 17:00:00 GMT</pubDate></item></channel></rss>