summaryrefslogtreecommitdiffhomepage
path: root/tests/00_syntax/07_embedded_single_line_comments
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2020-09-10 18:37:24 +0200
committerJo-Philipp Wich <jo@mein.io>2020-09-10 18:37:24 +0200
commit9ea4368ff1e4842286e0e7a6aec58a2c2c799d5b (patch)
tree47d31fa6d686dd50220edfa505fcc21ce6c860fe /tests/00_syntax/07_embedded_single_line_comments
parent39164c57d893b02f9a253c661abc2459bcd57e5c (diff)
treewide: implement default lstrip_blocks and trim_blocks behaviour
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'tests/00_syntax/07_embedded_single_line_comments')
-rw-r--r--tests/00_syntax/07_embedded_single_line_comments3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/00_syntax/07_embedded_single_line_comments b/tests/00_syntax/07_embedded_single_line_comments
index 8c5fd4a..43f188c 100644
--- a/tests/00_syntax/07_embedded_single_line_comments
+++ b/tests/00_syntax/07_embedded_single_line_comments
@@ -11,10 +11,11 @@ Statement blocks may use C++ comments too: Test Another test.
The result of 5 + 9 is {{ // The block end tag is ignored: }}
// And the expression block continues here!
5 + 9 }}.
-Statement blocks may use C++ comments too: {%
+Statement blocks may use C++ comments too: {%+
print("Test"); // A comment.
// Another comment.
print(" Another test.");
%}
+
-- End --