Handlebars icon indicating copy to clipboard operation
Handlebars copied to clipboard

Fullest Handlebars.js templating support for Sublime Text 2 / 3. Also drives syntax colouring on Github and in Visual Studio Code. Install from: https://packagecontrol.io/packages/Handlebars.

Results 18 Handlebars issues
Sort by recently updated
recently updated
newest added

Great tool guys just some niggly bits when using to produce HTML output: ``` {{#if myVariable}} myFunc('Test'); {{/if}} ``` ![image](https://user-images.githubusercontent.com/47339721/100954209-d4020700-355f-11eb-9a2a-69ef813a1bda.png)

For some packages that rely on syntax parsing, such as bat, they look for sublime-syntax as opposed to tmLanguage. However, by leveraging SublimeSyntaxConvertor, we can convert Handlebars.tmLanguage to Handlebars.sublime-syntax. Thus,...

In Handlebars, a backslash can be used to prevent a mustache from being evaluated. Such a mustache is essentially text. ```handlebars \{{no-expression}} {{expression}} \{{{no-expression}}} {{expression}} \{{#no}} block \{{/no}} {{expression}} \{{\{{no}}}}...

Long lines can sometimes confuse the parser: ```handlebars {{#if active}}{{else}}{{/if}}{{#if img}}{{/if}}{{name}}{{#if active}}{{else}}{{/if}} ``` The `img` closing bracket `/>` is where highlighting messes up and mistakenly highlights that and the rest...

I see the note in README that you can set a key binding for comments: https://github.com/daaain/Handlebars/blame/master/README.md#L7 Is there a command I can assign to toggle handlebars comments when I'm inside...

![2019-05-07 12 11 19](https://user-images.githubusercontent.com/14261588/57271244-5941e300-70c1-11e9-9661-4fa945706d21.gif) Look at the gif. syntax highlighting failed when "$(function () {" entered. syntax highlighting good when "$(function () {" commented

This Atom plugin doesn't highlight HTML Handlebars templates quite right. The plugin is overly sensitive to spacing towards the right side of template directives. And templatized JavaScript doesn't highlight template...

_From @Jusys on October 9, 2017 21:38_ - VSCode Version: 1.17.0 (issue present in both 32bit and 64bit) - OS Version: Windows 7 32bit, Windows 10 64bit Steps to Reproduce:...

As per @tyleha's comment on #95, now HTML tags have the same colour as block expression opening and closing tags, which isn't great. The distinction of block tags is useful...

Currently format document makes handlebars code totally unreadable. Please add beautification support.