Skip to content

Commit f3bd888

Browse files
authored
Fix custom delimiters in nested partials (#739)
Closes #738
1 parent aca97b8 commit f3bd888

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

mustache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@
644644
if (tagIndex == 0 && indentation) {
645645
indentedValue = this.indentPartial(value, indentation, lineHasNonSpace);
646646
}
647-
return this.renderTokens(this.parse(indentedValue, tags), context, partials, indentedValue);
647+
return this.renderTokens(this.parse(indentedValue, tags), context, partials, indentedValue, tags);
648648
}
649649
};
650650

0 commit comments

Comments
 (0)