In golang, is there a way to truncate text in an html template?
For example, I have the following in my template:
{{ range .SomeContent }} ....
You can use slice from the documentation. The below sample must work :
{{ slice .Content 0 25}}