Fossil SCM
Tweak format of initial list of special characters to match format of examples given two sections below
Commit
160b9852ba2b8a83f662b36a0fa6e3cf30a10932233de86766aee1dc7f6cd5f3
Parent
a53d3b7db133971…
1 file changed
+4
-5
+4
-5
| --- www/globs.md | ||
| +++ www/globs.md | ||
| @@ -48,14 +48,14 @@ | ||
| 48 | 48 | |
| 49 | 49 | Special characters (and special character sequences) consume zero or |
| 50 | 50 | more characters from the target and describe what matches. The special |
| 51 | 51 | characters (and sequences) are: |
| 52 | 52 | |
| 53 | - * Matches any sequence of zero or more characters. | |
| 54 | - ? Matches exactly one character. | |
| 55 | - [...] Matches one character from the enclosed list of characters. | |
| 56 | - [^...] Matches one character not in the enclosed list. | |
| 53 | + * `*` Matches any sequence of zero or more characters; | |
| 54 | + * `?` Matches exactly one character; | |
| 55 | + * `[...]` Matches one character from the enclosed list of characters; and | |
| 56 | + * `[^...]` Matches one character not in the enclosed list. | |
| 57 | 57 | |
| 58 | 58 | Special character sequences have some additional features: |
| 59 | 59 | |
| 60 | 60 | * A range of characters may be specified with `-`, so `[a-d]` matches |
| 61 | 61 | exactly the same characters as `[abcd]`. Ranges reflect Unicode |
| @@ -74,11 +74,10 @@ | ||
| 74 | 74 | entire glob from matching. |
| 75 | 75 | * Note that unlike typical Unix shell globs, wildcards (`*`, `?`, |
| 76 | 76 | and character lists) are allowed to match `/` directory |
| 77 | 77 | separators as well as the initial `.` in the name of a hidden |
| 78 | 78 | file or directory. |
| 79 | - | |
| 80 | 79 | |
| 81 | 80 | Some examples of character lists: |
| 82 | 81 | |
| 83 | 82 | * `[a-d]` Matches any one of `a`, `b`, `c`, or `d` but not `ä`; |
| 84 | 83 | * `[^a-d]` Matches exactly one character other than `a`, `b`, `c`, |
| 85 | 84 |
| --- www/globs.md | |
| +++ www/globs.md | |
| @@ -48,14 +48,14 @@ | |
| 48 | |
| 49 | Special characters (and special character sequences) consume zero or |
| 50 | more characters from the target and describe what matches. The special |
| 51 | characters (and sequences) are: |
| 52 | |
| 53 | * Matches any sequence of zero or more characters. |
| 54 | ? Matches exactly one character. |
| 55 | [...] Matches one character from the enclosed list of characters. |
| 56 | [^...] Matches one character not in the enclosed list. |
| 57 | |
| 58 | Special character sequences have some additional features: |
| 59 | |
| 60 | * A range of characters may be specified with `-`, so `[a-d]` matches |
| 61 | exactly the same characters as `[abcd]`. Ranges reflect Unicode |
| @@ -74,11 +74,10 @@ | |
| 74 | entire glob from matching. |
| 75 | * Note that unlike typical Unix shell globs, wildcards (`*`, `?`, |
| 76 | and character lists) are allowed to match `/` directory |
| 77 | separators as well as the initial `.` in the name of a hidden |
| 78 | file or directory. |
| 79 | |
| 80 | |
| 81 | Some examples of character lists: |
| 82 | |
| 83 | * `[a-d]` Matches any one of `a`, `b`, `c`, or `d` but not `ä`; |
| 84 | * `[^a-d]` Matches exactly one character other than `a`, `b`, `c`, |
| 85 |
| --- www/globs.md | |
| +++ www/globs.md | |
| @@ -48,14 +48,14 @@ | |
| 48 | |
| 49 | Special characters (and special character sequences) consume zero or |
| 50 | more characters from the target and describe what matches. The special |
| 51 | characters (and sequences) are: |
| 52 | |
| 53 | * `*` Matches any sequence of zero or more characters; |
| 54 | * `?` Matches exactly one character; |
| 55 | * `[...]` Matches one character from the enclosed list of characters; and |
| 56 | * `[^...]` Matches one character not in the enclosed list. |
| 57 | |
| 58 | Special character sequences have some additional features: |
| 59 | |
| 60 | * A range of characters may be specified with `-`, so `[a-d]` matches |
| 61 | exactly the same characters as `[abcd]`. Ranges reflect Unicode |
| @@ -74,11 +74,10 @@ | |
| 74 | entire glob from matching. |
| 75 | * Note that unlike typical Unix shell globs, wildcards (`*`, `?`, |
| 76 | and character lists) are allowed to match `/` directory |
| 77 | separators as well as the initial `.` in the name of a hidden |
| 78 | file or directory. |
| 79 | |
| 80 | Some examples of character lists: |
| 81 | |
| 82 | * `[a-d]` Matches any one of `a`, `b`, `c`, or `d` but not `ä`; |
| 83 | * `[^a-d]` Matches exactly one character other than `a`, `b`, `c`, |
| 84 |