Commit 11df748a authored by Milo Yip's avatar Milo Yip

Revert "Another try for fixing schema.md"

This reverts commit c490d880.
parent c490d880
...@@ -185,7 +185,7 @@ RapidJSON implemented a simple NFA regular expression engine, which is used by d ...@@ -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 ...@@ -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) |
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment