From f3a01ac381687ee3a3f4dc9ab2da1d641a2489f0 Mon Sep 17 00:00:00 2001 From: caius Date: Thu, 12 Aug 2010 13:45:52 -0700 Subject: [PATCH] Migrated from liquid-for-designers v28 --- Liquid-for-Designers.textile | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Liquid-for-Designers.textile b/Liquid-for-Designers.textile index f371fd5..b4eafd0 100644 --- a/Liquid-for-Designers.textile +++ b/Liquid-for-Designers.textile @@ -295,4 +295,15 @@ Another way of doing this would be to assign @true / false@ values to the variab {% endif %} -If you want to combine a number of strings into a single string and save it to a variable, you can do that with the @capture@ tag. This tag is a block which "captures" whatever is rendered inside it, then assigns the captured value to the given variable instead of rendering it to the screen. \ No newline at end of file +If you want to combine a number of strings into a single string and save it to a variable, you can do that with the @capture@ tag. This tag is a block which "captures" whatever is rendered inside it, then assigns the captured value to the given variable instead of rendering it to the screen. + +
+  {% capture attribute_name %}{{ item.title | handleize }}-{{ i }}-color{% endcapture %}
+
+  
+  
+
\ No newline at end of file