Techniques for WCAG 2.0

Skip to Content (Press Enter)

-

H34: Using a Unicode right-to-left mark (RLM) or left-to-right mark (LRM) to mix text direction inline

Applicability

HTML 4, XHTML 1.0 and XHTML 1.1

This technique relates to:

User Agent and Assistive Technology Support Notes

Description

The objective of this technique is to use Unicode right-to-left marks and left-to-right marks to override the HTML bidirectional algorithm when it produces undesirable results. This may be necessary, for instance, when placing neutral characters such as spaces or punctuation between different directional text runs. The concepts used in this technique are described in What you need to know about the bidi algorithm and inline markup.

Unicode right-to-left marks and left-to-right marks can be entered directly or by means of entities. The character entities for these markers are

Due to the bidi algorithm, a source code editor may not display character entities as expected.

Examples

Example 1

This example shows an Arabic phrase in the middle of an English sentence. The exclamation point is part of the Arabic phrase and should appear on its left. Because it is between an Arabic and Latin character and the overall paragraph direction is LTR, the bidirectional algorithm would position it to the right of the Arabic phrase. Inserting a Unicode right-to-left mark (via the HTML character entity ‏) after the exclamation mark positions it correctly.

The title is "مفتاح معايير الويب!" in Arabic.

Visual ASCII version:

The title is "!biula riiacm Hatfm" in Arabic.

Inserting a Unicode right-to-left mark (in this case via the HTML character entity ‏) immediately after the exclamation mark positions it correctly.

The title is "مفتاح معايير الويب!‏" in Arabic.

Visual ASCII version:

The title is "!biula riiacm Hatfm" in Arabic.

Resources

Resources are for information purposes only, no endorsement implied.

Tests

Procedure

  1. Examine the source for places where text changes direction.

  2. When text changes direction, check whether neutral characters such as spaces or punctuation occur adjacent to text that is rendered in the non-default direction.

  3. When #2 is true and the HTML bidirectional algorithm would produce the wrong placement of the neutral characters, check whether the neutral characters are followed by Unicode right-to-left or left-to-right marks that cause neutral characters to be placed as part of the preceding characters.

Expected Results