shithub: hugo

Download patch

ref: be4376a022abb4a0370a8a34847835839b3aa82e
parent: be2e08c4ade95e9aab4c891f867bd8f33519a101
author: bep <[email protected]>
date: Fri May 22 18:20:35 EDT 2015

docs: add doc for slicestr

See #1156

--- a/docs/content/templates/functions.md
+++ b/docs/content/templates/functions.md
@@ -382,6 +382,16 @@
 Note: "ZgotmplZ" is a special value that indicates that unsafe content reached a
 CSS or URL context.
 
+### slicestr
+
+Slicing in Slicestr is done by specifying a half-open range with two indices, start and end. 1 and 4 creates a slice including elements 1 through 3. 
+The end index can be omitted, it defaults to the string's length.
+
+e.g. 
+
+* `{{slicestr "BatMan" 3}}` → "Man"
+* `{{slicestr "BatMan" 0 3}}` → "Bat"
+
 ### title
 Convert all characters in string to titlecase.