tpl: Add truncate template function
authorMathias Biilmann <info@mathias-biilmann.net>
Fri, 6 Jan 2017 09:42:32 +0000 (01:42 -0800)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 6 Jan 2017 09:42:32 +0000 (10:42 +0100)
commit2989c38245628e1ed0062f1a345da0693f4f294d
tree249d21374193c5e4af5545f2fc656ac09485107c
parent9c19ef0f871007470898eb640bd5d9efabd85a84
tpl: Add truncate template function

This commit adds a truncate template function for safely truncating text without
breaking words. The truncate function is HTML aware, so if the input text is a
template.HTML it will be truncated without leaving broken or unclosed HTML tags.

    {{ "this is a very long text" | truncate 10 " ..." }}
    {{ "With [Markdown](/markdown) inside." | markdownify | truncate 10 }}
docs/content/templates/functions.md
tpl/template_func_truncate.go [new file with mode: 0644]
tpl/template_func_truncate_test.go [new file with mode: 0644]
tpl/template_funcs.go
tpl/template_funcs_test.go