Skip to content

Commit 6f5bf3d

Browse files
committed
feat(Handlebars): support recursive partial blocks
1 parent 184448a commit 6f5bf3d

File tree

3 files changed

+192
-61
lines changed

3 files changed

+192
-61
lines changed

include/mrdocs/Support/Handlebars.hpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -553,8 +553,9 @@ class Handlebars {
553553
std::string
554554
render(std::string_view templateText) const
555555
{
556-
dom::Object const& context = {};
557-
auto exp = try_render(templateText, context, {});
556+
dom::Value emptyContext(dom::Object{});
557+
HandlebarsOptions defaultOptions;
558+
auto exp = try_render(templateText, emptyContext, defaultOptions);
558559
if (!exp)
559560
{
560561
throw exp.error();

0 commit comments

Comments
 (0)