From b20eb21eb4cf097e5187ab170c0556ee32a1a966 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Coup=C3=A9?= Date: Thu, 3 Dec 2015 16:30:28 +0100 Subject: [PATCH] could not find the reverse filter mentioned anywhere although it exists in Liquid so I added it --- Liquid-for-Designers.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Liquid-for-Designers.md b/Liquid-for-Designers.md index b69a493..f44e645 100644 --- a/Liquid-for-Designers.md +++ b/Liquid-for-Designers.md @@ -72,6 +72,7 @@ Hello {{ 'now' | date: "%Y %h" }} * `round` - rounds input to the nearest integer or specified number of decimals * `split` - split a string on a matching pattern *e.g.* `{{ "a~b" | split:"~" }} #=> ['a','b']` * `modulo` - remainder, *e.g.* `{{ 3 | modulo:2 }} #=> 1` +* `reverse` - reverse sort the passed in array ## Tags