1,871 issues in handlebars-lang/handlebars.js
This is a fix to solve Issue 1741. Resolves https://github.com/handlebars-lang/handlebars.js/issues/1741. just checked if obj is really an object at the errors occurrence line specified in the issue. I ...
simply added double quote to partial not found error message :)
This is a fix to solve Issue 1948. Resolves https://github.com/handlebars-lang/handlebars.js/issues/1948. Added a new helper called partialDefined which checks the current context for given partial existence. ...
This is a fix to solve Issue 1840. Resolves https://github.com/handlebars-lang/handlebars.js/issues/1840. Added _parent and context to data returned by with in helpers just like each does to each iterated ...
This was previously discussed here. The conclusion was that there currently is no way to check whether a partial is defined, so I m making a feature request here. This is mainly useful for inline partials, ...
This adds a prepare script, so that this repo can be depended on from the git repository. This is useful to get the latest fixes until a new release is made. - [X] Please don t start pull requests for ...
Node 20 was released recently, so lets test Handlebars with it. Also updated the other CI jobs to use the current Node 18 LTS.
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 ...
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 ...
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 ...