Skip to content

Commit

Permalink
Use real markdown footnote for # sets.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Dec 29, 2023
1 parent dc74a75 commit ad9a69c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tokens.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Literals are tokens used in [literal expressions].

#### Characters and strings

| | Example | `#` sets\* | Characters | Escapes |
| | Example | `#` sets[^nsets] | Characters | Escapes |
|----------------------------------------------|-----------------|------------|-------------|---------------------|
| [Character](#character-literals) | `'H'` | 0 | All Unicode | [Quote](#quote-escapes) & [ASCII](#ascii-escapes) & [Unicode](#unicode-escapes) |
| [String](#string-literals) | `"hello"` | 0 | All Unicode | [Quote](#quote-escapes) & [ASCII](#ascii-escapes) & [Unicode](#unicode-escapes) |
Expand All @@ -35,7 +35,7 @@ Literals are tokens used in [literal expressions].
| [C string](#c-string-literals) | `c"hello"` | 0 | All Unicode | [Quote](#quote-escapes) & [Byte](#byte-escapes) & [Unicode](#unicode-escapes) |
| [Raw C string](#raw-c-string-literals) | `cr#"hello"#` | <256 | All Unicode | `N/A` |

\* The number of `#`s on each side of the same literal must be equivalent.
[^nsets]: The number of `#`s on each side of the same literal must be equivalent.

#### ASCII escapes

Expand Down

0 comments on commit ad9a69c

Please sign in to comment.