Skip to content

Commit 9743f51

Browse files
authored
Changing footnotes placement
Signed-off-by: RD WebDesign <[email protected]>
1 parent 858d8e7 commit 9743f51

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docs/regex/tutorial.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ Character class | Equivalent | Pi-hole specific | Interpretation
104104
`[[:space:]]` | `[ \f\n\r\t\v]` | Yes | white-space characters
105105
`[[:xdigit:]]` | `[0-9a-fA-F]` | Yes | hexadecimal digits
106106

107+
///Footnotes Go Here///
108+
107109
[^*]: FTL matches case-insensitive by default as case does not matter in domain names
108110

109111
Note that character classes are abbreviations, they need to be used in character groups, i.e., enclosed in `[]`. As such, the equivalent of `[0-9]` would be `[[:digit:]]`, *not* `[:digit:]`. It is allowed to mix character classes with classical character groups. For example, `[a-z0-9]` is identical to `[a-z[:digit:]]`.

0 commit comments

Comments
 (0)