-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow ``figcaption`` in rich text editor as a valid tag. Add registry setting for plone.image_caption outputfilter transform.
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Image caption support | ||
Allow ``figcaption`` in rich text editor as a valid tag. | ||
Add registry setting for plone.image_caption outputfilter transform. | ||
[thet] |
13 changes: 13 additions & 0 deletions
13
plone/app/upgrade/v52/profiles/to_rc4/registry/image_captioning.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0"?> | ||
<registry> | ||
<record name="plone.valid_tags"> | ||
<value purge="false"> | ||
<element>figcaption</element> | ||
</value> | ||
</record> | ||
<record name="plone.image_captioning" interface="Products.CMFPlone.interfaces.controlpanel.IImagingSchema" field="image_captioning"> | ||
<field type="plone.registry.field.Bool"> | ||
</field> | ||
<value>False</value> | ||
</record> | ||
</registry> |