You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VSCode might appreciate a Hugo (Go HTML template) syntax beautifier. Still now, Hugo tags are treated as text nodes (pure text) in HTML format leads to its content always get indent backward. Something look like this:
Expectation:
{{ if "what-ever-cond-is" }}
// A text node
{{ end }}
Reality:
{{ if "what-ever-cond-is" }}
// A text node
{{ end }}
Since we already have syntax highlighting for Hugo, maybe it is possible to do a beautifier for it?
The text was updated successfully, but these errors were encountered:
VSCode might appreciate a Hugo (Go HTML template) syntax beautifier. Still now, Hugo tags are treated as text nodes (pure text) in HTML format leads to its content always get indent backward. Something look like this:
Expectation:
Reality:
Since we already have syntax highlighting for Hugo, maybe it is possible to do a beautifier for it?
The text was updated successfully, but these errors were encountered: