From Jason Turner

[lex.ccon.esc]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpfrsrkaam/{from.md → to.md} +14 -16
tmp/tmpfrsrkaam/{from.md → to.md} RENAMED
@@ -1,18 +1,16 @@
1
- **Table: Escape sequences** <a id="lex.ccon.esc">[lex.ccon.esc]</a>
2
 
3
- | | | |
4
- | --------------- | -------------- | ------------------ |
5
- | new-line | NL(LF) | `\n` |
6
- | horizontal tab | HT | `\t` |
7
- | vertical tab | VT | `\v` |
8
- | backspace | BS | `\b` |
9
- | carriage return | CR | `\r` |
10
- | form feed | FF | `\f` |
11
- | alert | BEL | `\a` |
12
- | backslash | \ | `` |
13
- | question mark | ? | `\?` |
14
- | single quote | `'` | `\'` |
15
- | double quote | `"` | `\"` |
16
- | octal number | \numconst{ooo} | `numconst{ooo}` |
17
- | hex number | \numconst{hhh} | `\x\numconst{hhh}` |
18
 
 
1
+ **Table: Simple escape sequences** <a id="lex.ccon.esc">[lex.ccon.esc]</a>
2
 
3
+ | character | | *simple-escape-sequence* |
4
+ | --------- | -------------------- | ------------------------ |
5
+ | `U+000a` | line feed | `\n` |
6
+ | `U+0009` | character tabulation | `\t` |
7
+ | `U+000b` | line tabulation | `\v` |
8
+ | `U+0008` | backspace | `\b` |
9
+ | `U+000d` | carriage return | `\r` |
10
+ | `U+000c` | form feed | `\f` |
11
+ | `U+0007` | alert | `\a` |
12
+ | `U+005c` | reverse solidus | `` |
13
+ | `U+003f` | question mark | `\?` |
14
+ | `U+0027` | apostrophe | `\'` |
15
+ | `U+0022` | quotation mark | `\"` |
 
 
16