diff options
author | 2019-09-29 21:54:44 +0300 | |
---|---|---|
committer | 2019-10-02 13:39:31 +0300 | |
commit | 649d56548c5c2449ef3f4e371bb7aa50c7c655f3 (patch) | |
tree | d8bf099fef71e32e232f6c388b704bfef7b67fc7 | |
parent | b4af58a1f2f3eb97668d9e2ed4c9558ff2a8d09b (diff) | |
download | newsboat-649d56548c5c2449ef3f4e371bb7aa50c7c655f3.tar.gz newsboat-649d56548c5c2449ef3f4e371bb7aa50c7c655f3.tar.zst newsboat-649d56548c5c2449ef3f4e371bb7aa50c7c655f3.zip |
Document that pound char can be escaped in config
-rw-r--r-- | doc/chapter-firststeps.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/chapter-firststeps.txt b/doc/chapter-firststeps.txt index 725ad49c..01e71a50 100644 --- a/doc/chapter-firststeps.txt +++ b/doc/chapter-firststeps.txt @@ -92,12 +92,12 @@ also contain comments, which start with the `#` character and go as far as the end of line. If you need to enter a configuration argument that contains spaces, use quotes (`"`) around the whole argument. It's even possible to integrate the output of external commands into the configuration. The text -between two backticks (+\`+) is evaluated as shell command, and its output is -put on its place instead. This works like backtick evaluation in +between two backticks (+`+) is evaluated as shell command, and its output +is put on its place instead. This works like backtick evaluation in Bourne-compatible shells and allows users to use external information from the -system within the configuration. Backticks can be escaped with a backslash -(+\`+); in that case, they'll be replaced with a literal backtick in the -configuration. +system within the configuration. Backticks and `#` characters can be escaped +with a backslash (e.g. `\`` and `\#`); in that case, they'll be replaced with +literal +`+ or `#` in the configuration. Searching for articles is possible in newsboat, too. Just press the "/" key, enter your search phrase, and the title and content of all articles are |