PhpStorm 2017.2 Help

Handlebars and Mustache

PhpStorm recognizes and provides support for Handlebars expressions and Mustache templates in dedicated Handlebars and Mustache files that have the extension .hbs or .mustache respectively. PhpStorm distinguishes these file types and processes their contents according to default or custom settings specified on the Templates page of the Settings/Preferences dialog.

Before you start, install and activate the Handlebars/Mustache repository plugin. The plugin is not bundled with PhpStorm, but it can be installed from the JetBrains plugin repository as described in Installing, Updating and Uninstalling Repository Plugins and Enabling and Disabling Plugins.

Configuring coding assistance for Handlebars expressions and Mustache templates

  1. Open the Templates page (File | Settings | Languages and Frameworks | JavaScript | Templates for Windows and Linux or PhpStorm | Preferences | Languages and Frameworks | JavaScript | Templates for macOS). Switch to the Handlebars/Mustache area.
  2. Enable or disable tag completion.
    • To have PhpStorm automatically insert the second closing curly brace (}) of a Handlebars expression as soon as you type the first closing one, select the Automatically insert closing tag check box.

      PhpStorm also recognizes triple stashes ({{{) that prevent escaping values inside expressions. In this case, PhpStorm automatically inserts two closing curly braces as soon as you type the first closing one.

    • When this check box is cleared, you have to type the closing curly braces and triple stashes manually.
  3. To have Handlebars expressions and Mustache templates automatically reformatted during code generation, refactoring, or reformatting (Ctrl+Alt+L), select the Enable formatting check box.

    If the check box is cleared, the original formatting of Handlebars expressions and Mustache templates is preserved.

  4. From the Language for comments drop-down list, select the language to inherit the style for comments from. When you enter a line or block comment by pressing Ctrl+Slash or Ctrl+Shift+Slash, PhpStorm inserts the comment delimiters that are used in the chosen language, for example, {{!----}} for Handlebars, /**/ for JavaScript, <!----> for HTML, etc.
Last modified: 28 November 2017

See Also

Reference:

Language and Framework-Specific Guidelines: