Skip to content
New issue

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

Improve auto formatting #27

Open
casid opened this issue Jul 27, 2023 · 0 comments
Open

Improve auto formatting #27

casid opened this issue Jul 27, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@casid
Copy link
Owner

casid commented Jul 27, 2023

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

!{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

Template calls where parameters spawn multiple lines should be indented.

For example

Before

@template.foo.bar(
hello = "Hello",
world = "World"
)

After

@template.foo.bar(
   hello = "Hello",
   world = "World"
)
@casid casid added the enhancement New feature or request label Jul 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant