- From: Karlsson Kent - keka <keka@im.se>
- Date: Thu, 7 Sep 2000 18:47:05 +0200
- To: 'xml-editor@w3.org' <xml-editor@w3.org>
Received on Thursday, 7 September 2000 12:49:07 UTC
Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] |
[#x10000-#x10FFFF]
Char should cover all NLF characters (in XML to be interpreted as LF is),
(see Unicode Standard Annex #13 Unicode Newline Guidelines,
http://www.unicode.org/unicode/reports/tr13/) and should exclude
not-a-character code points also on the surrogate planes
(as is already done for the BMP), as well as exclude control codes
in the C1 area (except #x85), as is already done for the C1 control
codes (except VT and NLFs):
Char ::= [#x9-#xD] | [#x20-#x7E] | #x85
| [#xA0-#xD7FF] | [#xE000-#xFFFD]
| [#x10000-#x1FFFD] | [#x20000-#x2FFFD]
| [#x30000-#x3FFFD] | [#x40000-#x4FFFD]
| [#x50000-#x5FFFD] | [#x60000-#x6FFFD]
| [#x70000-#x7FFFD] | [#x80000-#x8FFFD]
| [#x90000-#x9FFFD] | [#xA0000-#xAFFFD]
| [#xB0000-#xBFFFD] | [#xC0000-#xCFFFD]
| [#xD0000-#xDFFFD] | [#xE0000-#xEFFFD]
| [#xF0000-#xFFFFD] | [#x100000-#x10FFFD]
/Kent Karlsson
Received on Thursday, 7 September 2000 12:49:07 UTC