From 464733444a919b3872984fa352edd7008c8f3d5d Mon Sep 17 00:00:00 2001 From: Tyler Akins Date: Fri, 23 Jan 2015 20:26:56 +0000 Subject: [PATCH] Adding support for & This fixes 6 official tests --- mo | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mo b/mo index 3945ddc..77f66fe 100755 --- a/mo +++ b/mo @@ -156,6 +156,12 @@ mustache-parse() { mustache-show "$MUSTACHE_TAG" ;; + '&'*) + # Unescaped + mustache-trim MUSTACHE_TAG "${MUSTACHE_TAG:1}" + mustache-show "$MUSTACHE_TAG" + ;; + *) # Normal environment variable or function call mustache-show "$MUSTACHE_TAG"