From cee416839b16e27f0b853a7778684927f94334a9 Mon Sep 17 00:00:00 2001 From: "John F. Mercer" Date: Sat, 25 Jul 2015 11:47:07 -0400 Subject: [PATCH] Clarifies and improves language in documentation * Although my previous PR (#469) on this topic was merged, it caused [quite a discussion](https://github.com/janl/mustache.js/pull/469) about the clarity of the language I wrote. * This commit seeks to clarify and improve the sentence under discussion. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7163361..596b59b 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ The most basic tag type is a simple variable. A `{{name}}` tag renders the value All variables are HTML-escaped by default. If you want to render unescaped HTML, use the triple mustache: `{{{name}}}`. You can also use `&` to unescape a variable. -To print `{{name}}` as a string literal, the default delimiters must be changed. See the ["Set Delimiter'](https://github.com/janl/mustache.js#set-delimiter) section for more information about custom delimiters. +If you want `{{name}}` _not_ to be interpreted as a mustache tag, but rather to appear exactly as `{{name}}` in the output, you must change and then restore the default delimiter. See the ["Set Delimiter'](https://github.com/janl/mustache.js#set-delimiter) section for more information about custom delimiters. View: