-
-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Labels
Description
I just noticed that some of the entries of the comment-patterns-doc are not displayed correctly: the Mustache and Handlebars multiline-patterns are disappearing. I have cut the problem down to these two files
.verb.md:
This is a {%= disappearing() %} helper
- Part of
verbfile.js
verb.helper("disappearing", function() {
return "{{! abc }}"
});The output is not, as I would have expected:
This is a {{! abc }} helper
but
This is a helper
(see verb-tests).
I would like to know why. Is this a bug?
Reactions are currently unavailable