0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Go言語のテンプレートでテンプレート構文を無視する

Last updated at Posted at 2021-11-14

Go言語のテンプレートはHelmやHugoなどで使われています。

テンプレートの中でテンプレート構文が使われているときに、たとえば下記のようになっている場合です。このとき、シングルクォート内の{{.Request.Method}}は無視したいものとします。

通常何もしないとテンプレートのレンダリング時にテンプレートとして解釈されてしまいます。

logging: '{{.Request.Method}}'

その部分を無視したいときには下記のようにします。

logging: '{{"{{"}}.Request.Method{{"}}"}}'

こうすることによって、初回のレンダリング時には{{"{{"}}が解釈され、結果{{が出力されます。}}部分も同様です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?