summary history branches tags files
commit:1403cdce988e7a77166d48ab06dc86d4690746b8
author:Trevor Bentley
committer:Trevor Bentley
date:Fri Jan 20 02:42:02 2023 +0100
parents:691d70c9067ad7cbc1801cd3a82e70e9fc487038
fix incorrectly escaped pipe in README table
diff --git a/README.md b/README.md
line changes: +10/-10
index 000ad58..183ab74
--- a/README.md
+++ b/README.md
@@ -153,16 +153,16 @@ Any templates that are not specified in the configuration file are not evaluated
 
 Tera templates support custom functions and filters, and Itsy-Gitsy defines a few for convenience:
 
-| Name                | Type     | Purpose                                    | Example                                          |              |
-|---------------------|----------|--------------------------------------------|--------------------------------------------------|--------------|
-| only_files          | filter   | Filter the file tree into only files       | {{ all_files \| only_files }}                    |              |
-| only_dirs           | filter   | Filter the file tree into only directories | {{ all_files \| only_dirs }}                     |              |
-| hex                 | filter   | Output a number as a hex string            | {{ 17 \| hex }}                                  |              |
-| oct                 | filter   | Output a number as an octal string         | {{ 17 \| oct }}                                  |              |
-| mask                | filter   | Bitwise mask a number with another number  | {{ 17 \| mask(mask="0x77") }}                    |              |
-| url_string          | filter   | Convert a string to a url-friendly "slug"  | {{ file.path                                     | url_string}} |
-| ts_to_date          | function | Convert a timestamp and offset to a date   | {{ts_to_date(ts=ts_utc, tz=ts_offset)}}          |              |
-| ts_to_git_timestamp | function | Same, but print in standard Git format     | {{ts_to_git_timestamp(ts=ts_utc, tz=ts_offset)}} |              |
+| Name                | Type     | Purpose                                    | Example                                          |
+|---------------------|----------|--------------------------------------------|--------------------------------------------------|
+| only_files          | filter   | Filter the file tree into only files       | {{ all_files \| only_files }}                    |
+| only_dirs           | filter   | Filter the file tree into only directories | {{ all_files \| only_dirs }}                     |
+| hex                 | filter   | Output a number as a hex string            | {{ 17 \| hex }}                                  |
+| oct                 | filter   | Output a number as an octal string         | {{ 17 \| oct }}                                  |
+| mask                | filter   | Bitwise mask a number with another number  | {{ 17 \| mask(mask="0x77") }}                    |
+| url_string          | filter   | Convert a string to a url-friendly "slug"  | {{ file.path \| url_string}}                     |
+| ts_to_date          | function | Convert a timestamp and offset to a date   | {{ts_to_date(ts=ts_utc, tz=ts_offset)}}          |
+| ts_to_git_timestamp | function | Same, but print in standard Git format     | {{ts_to_git_timestamp(ts=ts_utc, tz=ts_offset)}} |
 
 `url_string` can be used in conjunction with the `%PATH%` and `%REF%` filename variables.  Both use a very primitive form of "slugifying" the strings into a format that can be used in a URL.  This allows for basic permalinks.