-
I'm working on a very simple hbs_helper, something like
```
// assets/hbs_helpers/asset_url.js
function assetUrl(input) {
return `${absolute_prefix}/${input}` // still figuring how to get th…
rkmax updated
6 years ago
-
Trying to "assemble" my blog pages I get the following error `Missing helper: 'eachItems'`
yumyo updated
9 years ago
-
Helpers are a pretty common and handy `Handlebars` feature. We should design a way to support them.
-
Hello,
I've just updated handlebars to version 4.7.1. I get several errors in the console which look like:
```
Handlebars: Access has been denied to resolve the property "format" because it is no…
-
**code:**
```
const factorial=(num)=>{
if(num===0 || num===1){
return 1;
}
return num*factorial(num-1);
}
console.log(factorial(18)) //6402373705728000
```
-
I am writing a brunch plugin which is transforming static files using handlebars and handlebars-layouts.
The plugin is picking up helpers (partials) from files on the filesystem - these are common la…
-
I've googled for hours and I can't seem to find any issues, answers, documentation to answer the particular issue I'm having so here it goes... Also, I'm not sure if this belongs here or in another re…
-
The [Stencil documentation](https://stencil.bigcommerce.com/docs/handlebars-helpers-reference#section--itemat-) lists `itemAt` as a handlebars array helper. I need that helper so tried to use it, but …
-
We've built a library of functions for performing mathematics in our handlebars templates. I think this is a bad idea for the following reasons:
1. Handlebars.js is known for being a "logic-less" t…
-
Hello,
I have a desire to automatically list pages to a menu list. How can I go about doing this (creating the menu list of pages automatically) with panini when the pages are created in the /src/pag…