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
Seems that the Go Template lexer do not support all "features" like assigned operator and multi-line comments. These elements in the rendered output are ignored and/or marked as a syntax error.
Code:
{{/* a comment */}}
{{/* a multi-line
comment
*/}}
{{ $variable := 1 }}
{{ $variable = 2 }}
Output:
The text was updated successfully, but these errors were encountered:
Seems that the
Go Template
lexer do not support all "features" like assigned operator and multi-line comments. These elements in the rendered output are ignored and/or marked as a syntax error.Code:
Output:

The text was updated successfully, but these errors were encountered: