We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Although this is custom handlebars (Mandrill) markup. Is there a way I can prevent the expression inside the back ticks from being formatted?
The code looked like this before beautification:
{{#if `this.customerSegment == "Active"`}} ... {{/if}}
The code should have looked like this after beautification:
The code actually looked like this after beautification:
{{#if `this.customerSegment=="Active" `}} ... {{/if}}
atom-beautify with JS Beautifier set as the beautifier for Handlebars.
{ "html": { "allowed_file_extensions": ["htm", "html", "xhtml", "shtml", "xml", "svg", "dust", "hbs"], "brace_style": "collapse", "end_with_newline": true, "indent_char": " ", "indent_handlebars": true, "indent_inner_html": true, "indent_scripts": "normal", "indent_size": 2, "max_preserve_newlines": 1, "preserve_newlines": true, "unformatted": ["a", "span", "img", "code", "pre", "sub", "sup", "em", "strong", "b", "i", "u", "strike", "big", "small", "pre", "h1", "h2", "h3", "h4", "h5", "h6", "meta"], "wrap_line_length": 0 } }
The text was updated successfully, but these errors were encountered:
force-expand-multiline
No branches or pull requests
Although this is custom handlebars (Mandrill) markup. Is there a way I can prevent the expression inside the back ticks from being formatted?
Input
The code looked like this before beautification:
Expected Output
The code should have looked like this after beautification:
Actual Output
The code actually looked like this after beautification:
Environment
atom-beautify with JS Beautifier set as the beautifier for Handlebars.
Settings
The text was updated successfully, but these errors were encountered: