---
---
{{/* comments */}}
{{`https://golang.org/pkg/text/template/#hdr-Actions` | markdownify }}
{{`A comment; discarded. May contain newlines.
Comments do not nest and must start and end at the delimiters
`}}

block comment ok:
{{/*
  {{ $myFoo := "bar"}}
  hej - comment here ...
  {{ $i := 42 }} {{$i}}
*/}}

block comment wrong:
{{/*
 {{ $myFoo := "bar"}} {{/* bla bla bla */}}
 hej - no comment here ...
 {{ $i := 42 }} {{$i}}
*/}}

block comment ok:
{{/*  {{ $myFoo := "bar"}} {{/* bla bla bla */}}
{{/*  hej - comment here ...                */}}
{{/*  {{ $i := 42 }} {{$i}}                 */}}


https://golang.org/pkg/text/template/#hdr-Actions
A comment; discarded. May contain newlines.
Comments do not nest and must start and end at the delimiters


block comment ok:


block comment wrong:

 hej - no comment here ...
  42
*/}}

block comment ok: