Revert "Another try for fixing schema.md"

This reverts commit c490d880a3e18d315af0afbe5e8b54c7179d6df0.
This commit is contained in:
Milo Yip 2016-10-05 10:21:45 +08:00
parent c490d880a3
commit 11df748a3b

View File

@ -185,7 +185,7 @@ RapidJSON implemented a simple NFA regular expression engine, which is used by d
|Syntax|Description| |Syntax|Description|
|------|-----------| |------|-----------|
|`ab` | Concatenation | |`ab` | Concatenation |
|<code>a|b</code> | Alternation | |<code>a&#124;b</code> | Alternation |
|`a?` | Zero or one | |`a?` | Zero or one |
|`a*` | Zero or more | |`a*` | Zero or more |
|`a+` | One or more | |`a+` | One or more |
@ -202,7 +202,7 @@ RapidJSON implemented a simple NFA regular expression engine, which is used by d
|`[^abc]` | Negated character classes | |`[^abc]` | Negated character classes |
|`[^a-c]` | Negated character class range | |`[^a-c]` | Negated character class range |
|`[\b]` | Backspace (U+0008) | |`[\b]` | Backspace (U+0008) |
|<code>\\|</code>, `\\`, ... | Escape characters | |<code>\\&#124;</code>, `\\`, ... | Escape characters |
|`\f` | Form feed (U+000C) | |`\f` | Form feed (U+000C) |
|`\n` | Line feed (U+000A) | |`\n` | Line feed (U+000A) |
|`\r` | Carriage return (U+000D) | |`\r` | Carriage return (U+000D) |