Fossil

Check-in [ea3925bdc1]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fixed another case of extra indenting in the globs doc
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: ea3925bdc146754500c4ed12e1d18ca4d01165e1c377e0589f381d0b98699d73
User & Date: wyoung 2024-02-18 13:08:07.466
Context
2024-02-18
13:15
The chat doc was using blockquote MD markup for code examples, making them look different from all the others. check-in: d6dff8d714 user: wyoung tags: trunk
13:08
Fixed another case of extra indenting in the globs doc check-in: ea3925bdc1 user: wyoung tags: trunk
13:06
Style tweak in the embedded doc: italic next to bold causes the slanted letters to crash into the surrounding bold text. Bold-italic solves that. check-in: 99e6f717bf user: wyoung tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to www/globs.md.
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54

The parser allows whitespace and commas in a pattern by quoting _the
entire pattern_ with either single or double quotation marks. Internal
quotation marks are treated literally. Moreover, a pattern that begins
with a quote mark ends when the first instance of the same mark occurs,
_not_ at a whitespace or comma. Thus, this:

      "foo bar"qux

…constitutes _two_ patterns rather than one with an embedded space, in
contravention of normal shell quoting rules.

A list matches a file when any pattern in that list matches.

A pattern must consume and







|







40
41
42
43
44
45
46
47
48
49
50
51
52
53
54

The parser allows whitespace and commas in a pattern by quoting _the
entire pattern_ with either single or double quotation marks. Internal
quotation marks are treated literally. Moreover, a pattern that begins
with a quote mark ends when the first instance of the same mark occurs,
_not_ at a whitespace or comma. Thus, this:

    "foo bar"qux

…constitutes _two_ patterns rather than one with an embedded space, in
contravention of normal shell quoting rules.

A list matches a file when any pattern in that list matches.

A pattern must consume and