| Syntax 
   declare data-letters string string?
 
 Purpose
 
 The declare data-lettersdeclaration specifies additional characters that should be considered as letters when encountered in input data. The declaration must appear in the preamble. The first string specifies a new set of lowercase letters. The characters in the second string are the corresponding uppercase letters. If both strings are given, they must be of the same length. If the second string is omitted, then all characters in the first string are considered to be both uppercase and lowercase letters.
 The new letters declared in a declare data-lettersdeclaration do not affect the letters that can be used in unquoted names in OmniMark. Unquoted names are names that only contain characters permitted in OmniMark names. OmniMark uses the definition of letters found in the declare data-lettersdeclaration in the following situations: Pattern-matching with the letter,uc, orlcpatterns.When determining the uppercase and lowercase equivalents of letters specified in patterns that are preceded by the ulprefix.Using the format modifiers uorlto convert data into uppercase or lowercase.
 A character, including unaccented characters from "a" to "Z", can appear more than once in either of the strings in the declare data-lettersdeclaration. OmniMark chooses the first mapping specified in the declare data-lettersdeclaration, if there is one; if not, it uses the defaults. The%nformat item cannot appear in thedeclare data-lettersdeclaration. The definition of OmniMark letters does not affect recognition of name characters by the SGML parser. (The way the SGML parser treats letters is governed by the SGML Declaration.)
 The declare data-lettersdeclaration must follow the translation type (if there is one) and precede all other declarations and rules in the program. The period and the hyphen ("." and "-") can never be considered letters. |