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
Content blocks with more than one line should be formatted, so that @` and ` are moved on their own line, and the content is indented.
@`
`
For example
Before
!{var content = @`<a href="${url}" target="_blank" class="${anchorClass}"> ${url} </a>`;}
After
!{var content = @` <a href="${url}" target="_blank" class="${anchorClass}"> ${url} </a> `;}
Template calls where parameters spawn multiple lines should be indented.
@template.foo.bar( hello = "Hello", world = "World" )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Content blocks
Content blocks with more than one line should be formatted, so that
@`
and`
are moved on their own line, and the content is indented.For example
Before
After
Template calls
Template calls where parameters spawn multiple lines should be indented.
For example
Before
After
The text was updated successfully, but these errors were encountered: