aboutsummaryrefslogtreecommitdiff
path: root/doc/aerc-templates.7.scd
diff options
context:
space:
mode:
Diffstat (limited to 'doc/aerc-templates.7.scd')
-rw-r--r--doc/aerc-templates.7.scd21
1 files changed, 17 insertions, 4 deletions
diff --git a/doc/aerc-templates.7.scd b/doc/aerc-templates.7.scd
index 9382f2e..adcc85c 100644
--- a/doc/aerc-templates.7.scd
+++ b/doc/aerc-templates.7.scd
@@ -72,20 +72,33 @@ available always.
Example:
- _wrapText_ function can be used to wrap the original text to a number
+ _wrap_ function can be used to wrap the original text to a number
of characters per line.
```
- {{wrapText .OriginalText 72}}
+ {{wrap 72 .OriginalText}}
```
_quote_ function prepends each line with "> ".
```
{{quote .OriginalText}}
```
+ _exec_ function execute external command to process message.
+ ```
+ {{exec `/usr/local/share/aerc/filters/html`}}
+ ```
+
+ All of the above can be chained together if needed, for example.
+ ```
+ {{exec `/usr/local/share/aerc/filters/html` .OriginalText | wrap 72 | quote}}
+ ```
- All of the above can be chained together if needed, for example
+ Automatic HTML parsing can be achieved.
```
- {{wrapText .OriginalText 72 | quote}}
+ {{if eq .OriginalMIMEType "text/html"}}
+ {{exec `/usr/local/share/aerc/filters/html` .OriginalText | wrap 72 | quote}}
+ {{else}}
+ {{wrap 72 .OriginalText | quote}}
+ {{end}}
```
# SEE ALSO