diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-02-13 20:57:54 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-02-13 20:57:54 -0800 |
commit | aced049cc146037562b8c647625f24ea4cd8a219 (patch) | |
tree | 8874063b602f2b6c49a9617a8b90398b429b4c07 | |
parent | c64e6c1d864c93c23201192861ffed8f7b39eaeb (diff) |
Added U+000B and U+000C as whitespace characters.
Closes #300.
-rw-r--r-- | spec.txt | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -225,8 +225,8 @@ A line containing no characters, or a line containing only spaces The following definitions of character classes will be used in this spec: A [whitespace character](@whitespace-character) is a space -(`U+0020`), tab (`U+0009`), carriage return (`U+000D`), or -newline (`U+000A`). +(`U+0020`), tab (`U+0009`), newline (`U+000A`), line tabulation (`U+000B`), +form feed (`U+000C`), or carriage return (`U+000D`). [Whitespace](@whitespace) is a sequence of one or more [whitespace character]s. |