From 8df8f736f2bad7384103f3f63d66c18d4944aa5b Mon Sep 17 00:00:00 2001 From: Reggie Bigornia Date: Wed, 8 Jul 2026 15:04:24 +0800 Subject: [PATCH] Improve guide block helpers section by showing the template used for to invoke the helper and lead to the final output. --- src/guide/index.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/guide/index.md b/src/guide/index.md index 3f5b48a2..04de94d7 100644 --- a/src/guide/index.md +++ b/src/guide/index.md @@ -126,9 +126,13 @@ mustache, `/`, of the same name. Let's consider a helper that will generate an H -The example creates a helper named `list` to generate our HTML list. The helper receives the `people` as its first -parameter, and an `options` hash as its second parameter. The options hash contains a property named `fn`, which you can -invoke with a context just as you would invoke a normal Handlebars template. +The example creates a helper named `list` to generate our HTML list. + + + +The helper receives the `people` as its first parameter, and an `options` hash as its second parameter. The options hash +contains a property named `fn`, which you can invoke with a context just as you would invoke a normal Handlebars +template. When executed, the template will render: