58 discussions in handlebars-lang/handlebars.js
I have forked https://github.com/handlebars-lang/docs repo tried running locally, but the following error comes up. Error: error:0308010C:digital envelope routines::unsupported at new Hash (node:internal/crypto/hash:71:19) ...
Hello Everyone, I am trying to use handle bars in my project which target .net framework 4.5, But can t install it.. When I checked the supported target frameworks, last It is 4.5.1, I can not change ...
Hello! We re in the process of upgrading our app to use Node 18. When I did the upgrade, all of the tests failed. Looking into it, it looks like there s some difference where all of the whitespace is ...
Hello everyone. Can someone convert this html code to handelbars.js code please. !DOCTYPE html html body script function greet() { window.location = https://www.google.com ; } ...
So I have this code and I need to pass the ${nameMatch} to be compared in this helper image However, when I pass it with quotes, it literally sends ${nameMatch} , and not the value of the nameMatch variable. ...
can anybody help me solution for this case please seem like i can not get data from database outside the each loop im new in backend dev so please help me, thank you so much image image
JS fiddle link of the issue. I have a table where first row of the table each is defined. and in the second row tokens are defined, in the last row each declaration is done While compiling two rows of ...
Hello. My project is divided into 3 logical modules: a) Admin area b) User area c) Agent area Is it possible to make the following project structure: admin ____ adminProfile.js ____ adminProfile.hbs ...
This is my template {{#grid items col_size=3}} {{#each this}} [ {{@item1}} | {{@item2}} | {{@item3}} ] {{/each}} {{/grid}} where grid is a custom function that returns a 2d array from 1d array ...
Hi guys, I m trying to implement a kind of map helper similar to javascript map function. So my question is how can i pass a function to an helper ? Ideally to have something like: (map array double) where ...