From 7ef857a0bccc3f8fe9606b9443e3bd76b4a6f17f Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Thu, 24 Apr 2014 14:08:33 -0400 Subject: [PATCH] Fix syntax issue on Templates page with `include` example. Fixes #2256 for the time being. --- site/docs/templates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/docs/templates.md b/site/docs/templates.md index 611e1b56..a4c79184 100644 --- a/site/docs/templates.md +++ b/site/docs/templates.md @@ -209,7 +209,7 @@ root of your source directory. This will embed the contents of The name of the file you wish to embed can be literal (as in the example above), or you can use a variable, using liquid-like variable syntax as in - {% raw %}{% include {{ my_variable }} %}{% endraw %}. + {% raw %}{% include {{my_variable}} %}{% endraw %}.