diff options
author | Robin Jarry <robin@jarry.cc> | 2023-02-03 00:03:43 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-02-20 14:48:42 +0100 |
commit | 70f99085d73b3bfc9b3338c52e6df7bebc7651c7 (patch) | |
tree | 40918277a9e09c28c9492b0837a992e2d3824080 /doc/aerc-templates.7.scd | |
parent | 24f91b0277a1034f731aaf00c3e1f894c5ad27c1 (diff) | |
download | aerc-70f99085d73b3bfc9b3338c52e6df7bebc7651c7.tar.gz |
templates: add now function
This allows to get the current local time.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Acked-by: Moritz Poldrack <moritz@poldrack.dev>
Diffstat (limited to 'doc/aerc-templates.7.scd')
-rw-r--r-- | doc/aerc-templates.7.scd | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/aerc-templates.7.scd b/doc/aerc-templates.7.scd index c7bb0d1f..71042835 100644 --- a/doc/aerc-templates.7.scd +++ b/doc/aerc-templates.7.scd @@ -290,6 +290,14 @@ aerc provides the following additional functions: {{.DateAutoFormat .OriginalDate.Local}} ``` +*now* + Return the current date as a golang time.Time object that can be + formated with *dateFormat*. + + ``` + {{dateFormat now "Mon Jan 2 15:04:05 -0700 MST 2006"}} + ``` + *humanReadable* Return the human readable form of an integer value. |