From 88702b2514a1e6f21f91a4f87c30d843b0942d59 Mon Sep 17 00:00:00 2001 From: Patrick Steele-Idem Date: Tue, 6 May 2014 19:15:18 -0600 Subject: [PATCH] Update README.md --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index e8d3ed695..ba458af4b 100644 --- a/README.md +++ b/README.md @@ -380,25 +380,25 @@ module.exports = function create(__helpers) { escapeXmlAttr = __helpers.xa; return function render(data, context) { - context.w(('Hello ') + - (escapeXml(data.name)) + - ('! ')); + context.w('Hello ' + + escapeXml(data.name) + + '! '); if (notEmpty(data.colors)) { - context.w((''); } else { - context.w(('
No colors!
')); + context.w('
No colors!
'); } }; }