diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-09-10 18:37:24 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-09-10 18:37:24 +0200 |
commit | 9ea4368ff1e4842286e0e7a6aec58a2c2c799d5b (patch) | |
tree | 47d31fa6d686dd50220edfa505fcc21ce6c860fe /tests/00_syntax/07_embedded_single_line_comments | |
parent | 39164c57d893b02f9a253c661abc2459bcd57e5c (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_comments | 3 |
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 -- |