Install

Works with Drupal: ^8 || ^9

Using Composer to manage Drupal site dependencies

Alternative installation files

Download tar.gz 12.74 KB
MD5: 040c369347f3124f4388bfe3ea140582
SHA-1: 6d9a63601212095a4708f4f219eb2d42ce405d52
SHA-256: 71ccd9b13a389ceea3bd54ebea294ae7628749aa5ec8b21f05d3b451a928f90d
Download zip 18.04 KB
MD5: 92a67da31489d43db9cd56b21e622e9c
SHA-1: da9594a109054809e4f6427a45dff5ac7f3f7b61
SHA-256: 4703a71b0d9381ee41bf90ecda988770120b9281dedb73d06c07dd4d4ebb28d6

Release notes

When updating to 8.x-3.x from 8.x-2.x, there is no automated upgrade path. Site owners will need to manually verify and update their site configuration. In most cases, only minor changes will be required.

The difference between the two branches is that 8.x-3.x supports JSON objects and arrays and 8.x-2.x does not. As a result, the config values must now be formatted as valid JSON.

Examples

Boolean

There is no change for boolean values.

Before
forcePasteAsPlainText = true

After
forcePasteAsPlainText = true

Number

There is no change for number values.

Before
tabIndex = 3

After
tabIndex = 3

String

String values must now be encapsulated in quotes.

Before
removePlugins = font

After
removePlugins = "font"

Object/Array

JSON objects and arrays were not supported in 8.x-2.x. JSON objects and arrays must be formatted to a single line.

Before
N/A

After
format_h2 = { "element": "h2", "attributes": { "class": "contentTitle2" } }

Created by: chris burge
Created on: 11 Mar 2020 at 16:45 UTC
Last updated: 11 Mar 2020 at 16:45 UTC
New features

Other releases