Configuring RTE for Producing Accessible Sites configuring-rte-for-producing-accessible-sites
AEM supports both:
- standard accessibility features, including alternate text for images
- as well as additional features that can be accessed when creating content with components that use the rich text editor (RTE)
Content authors can use features of the RTE to provide accessibility information while adding content to a page. This can include adding structural information through headings and paragraph elements.
You can configure and customize these features by configuring RTE plugins for the component. For example, the paraformat
plugin allows you to add additional block level semantic elements, including extending the number of heading levels supported beyond the basic H1
, H2
and H3
provided by default.
The RTE is available in a variety of components from both the touch-enabled and the classic UI. However, the primary component for using the RTE is the Text component.
The Text component in AEM is available for both the touch-enabled and the classic UIs. The following images show the rich text editor with a range of plugins enabled, including paraformat
:
-
The Text component in the touch-enabled UI:
-
The Text component in the classic UI:
Configuring the Plugin Features configuring-the-plugin-features
Full instructions on configuring the RTE are available on the Configuring the Rich Text Editor page. This covers all issues, including the key steps:
By configuring a plugin within the appropriate rtePlugins
sub-branch in CRXDE Lite (see the following image), you can activate either all or specific features for that plugin.
Example - Specifying Paragraph Formats Available in RTE Selection Field example-specifying-paragraph-formats-available-in-rte-selection-field
New semantic block formats may be made available for selection by:
-
Depending on your RTE, determine and navigate to the configuration location.
-
Enable the Paragraphs selection field; by activating the plugin.
-
Specify the formats you want to have available in the Paragraphs selection field.
-
The paragraph formats are then available to the content author from the selection fields in the RTE. They can be accessed:
- Using the paragraph (pilcrow) icon in the touch-enabled UI:
- Using the Format field (drop-down selector) in the classic UI.
With structural elements available in the RTE via the paragraph format options, AEM provides a good basis for the development of accessible content. Content authors cannot use the RTE to format font size or colors or other related attributes, preventing the creation of inline formatting. Instead they must select the appropriate structural elements, such as headings and use global styles chosen from the Styles option. This ensures clean markup, greater options for users who browse with their own style sheets and correctly structured content.
Use of the Source Edit Feature use-of-the-source-edit-feature
In some cases, content authors will find it necessary to examine and adjust the HTML source code created using the RTE. For example, a piece of content created within the RTE may require additional markup to ensure compliance with WCAG 2.0. This can be done with the source edit option of the RTE. You can specify the sourceedit
feature on the misctools
plugin.
sourceedit
feature carefully. Typing errors and/or unsupported features can introduce more problems.Adding Support for Additional HTML Elements and Attributes adding-support-for-additional-html-elements-and-attributes
To further extend the accessibility features of AEM, it is possible to extend the existing components based on the RTE (such as the Text and Table components) with additional elements and attributes.
The following procedure illustrates how to extend the Table component with a Caption element that provides information about a data table to assistive technology users:
Example - Adding the Caption to the Table Properties Dialog example-adding-the-caption-to-the-table-properties-dialog
In the constructor of the TablePropertiesDialog
, add an additional text input field that is used for editing the caption. Note that itemId
must be set to caption
(i.e. the DOM attribute’s name) to automatically handle its content.
In Table you must explicitly set or remove the attribute to/from the DOM element. The value is passed by the dialog in the config
object. Note that DOM attributes should be set/removed using the corresponding CQ.form.rte.Common
methods ( com
is a shortcut for CQ.form.rte.Common
) to avoid common pitfalls with browser implementations.
Step by Step Instructions step-by-step-instructions
-
Start CRXDE Lite. For example: http://localhost:4502/crx/de/
-
Copy:
/libs/cq/ui/widgets/source/widgets/form/rte/commands/Table.js
to:
/apps/cq/ui/widgets/source/widgets/form/rte/commands/Table.js
note note NOTE You may need to create intermediate folders if they do not already exist. -
Copy:
/libs/cq/ui/widgets/source/widgets/form/rte/plugins/TablePropertiesDialog.js
to:
/apps/cq/ui/widgets/source/widgets/form/rte/plugins/TablePropertiesDialog.js
. -
Open the following file for editing (open with double-click):
/apps/cq/ui/widgets/source/widgets/form/rte/plugins/TablePropertiesDialog.js
-
In the
constructor
method, before the line reading:code language-none var dialogRef = this;
Add the following code:
code language-none editItems.push({ "itemId": "caption", "name": "caption", "xtype": "textfield", "fieldLabel": CQ.I18n.getMessage("Caption"), "value": (this.table && this.table.caption ? this.table.caption.textContent : "") });
-
Open the following file:
/apps/cq/ui/widgets/source/widgets/form/rte/commands/Table.js
. -
Add the following code at the end of the
transferConfigToTable
method:code language-none /** * Adds Caption Element */ var captionElement; if (dom.firstChild && dom.firstChild.tagName.toLowerCase() == "caption") { captionElement = dom.firstChild; } if (config.caption) { var captionTextNode = document.createTextNode(config.caption) if (captionElement) { dom.replaceNode(captionElement.firstChild,captionTextNode); } else { captionElement = document.createElement("caption"); captionElement.appendChild(captionTextNode); if (dom.childNodes.length>0) { dom.insertBefore(captionElement, dom.firstChild); } else { dom.appendChild(captionElement); } } } else if (captionElement) { dom.removeChild(captionElement); }
-
Save your changes using Save All
getValue()
method, could be used.- The
itemId
property for each corresponding field is set to the name of the appropriate DOM attribute (TablePropertiesDialog
). - The attribute is set and/or removed on the DOM element explicitly (
Table
).