summaryrefslogtreecommitdiff
path: root/tests/data
diff options
context:
space:
mode:
authorIvan N. Veselov <veselov@gmail.com>2013-05-03 19:10:57 +0300
committerIvan N. Veselov <veselov@gmail.com>2013-05-03 19:10:57 +0300
commitf86b9c5b0cd702788cfb1cc4db9b63f72c7105eb (patch)
tree9826732e7d585a237e05f416ac20511b0ac97225 /tests/data
parent617322ae8ce039fcd36a7a7629a822522454a1af (diff)
downloadhakyll-f86b9c5b0cd702788cfb1cc4db9b63f72c7105eb.tar.gz
Added support for "$if$" statement in templates.
Diffstat (limited to 'tests/data')
-rw-r--r--tests/data/template.html2
-rw-r--r--tests/data/template.html.out2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/data/template.html b/tests/data/template.html
index 153303c..a8d78eb 100644
--- a/tests/data/template.html
+++ b/tests/data/template.html
@@ -1,5 +1,5 @@
<div>
I'm so rich I have $$3.
- $echo test!$
+ $echo test$
$body$
</div>
diff --git a/tests/data/template.html.out b/tests/data/template.html.out
index 07b0851..8bd1879 100644
--- a/tests/data/template.html.out
+++ b/tests/data/template.html.out
@@ -1,5 +1,5 @@
<div>
I'm so rich I have $3.
- test!
+ test
<p>This is an example.</p>
</div>