diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-11-10 13:35:09 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-11-10 13:36:25 -0500 |
commit | 08574104bc9ba550153888cfdc4ebf28d500ce56 (patch) | |
tree | 201c053c4388cdcf07269a0df6d70e53fb9f49ed /doc | |
parent | cb7d7a043892e9911491c3acc32a36b61d891ea7 (diff) | |
download | aerc-08574104bc9ba550153888cfdc4ebf28d500ce56.tar.gz |
Correct capitalization in quoted_reply
Diffstat (limited to 'doc')
-rw-r--r-- | doc/aerc-templates.7.scd | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/aerc-templates.7.scd b/doc/aerc-templates.7.scd index 8504a60..3c8b123 100644 --- a/doc/aerc-templates.7.scd +++ b/doc/aerc-templates.7.scd @@ -72,12 +72,16 @@ available always. {{wrapText .OriginalText 72}} ``` - _quote_ function prepends each line with "> " and wraps the text to - 72 characters pre line. + _quote_ function prepends each line with "> ". ``` {{quote .OriginalText}} ``` + All of the above can be chained together if needed, for example + ``` + {{wrapText .OriginalText 72 | quote}} + ``` + # SEE ALSO *aerc*(1) *aerc-config*(5) |