5
1

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 3 years have passed since last update.

PugでHTMLタグを含む文字列を変数展開したい

Last updated at Posted at 2019-12-26

##{}ではなく!{}を使う

失敗例

#{}を使うと上手くいかない。

sample.pug
-
  const text = `これは<span class="red">サンプルテキスト</span>です。`

p #{text}

コンパイルしてみると、、、

sample.html
<p>これは&lt;span class=&quot;red&quot;&gt;サンプルテキスト&lt;/span&gt;です。</p>
スクリーンショット 2019-12-26 12.51.11.png

#{}記法は特殊文字をエスケープ処理してから出力するため、このような結果になります。

成功例

ここではエスケープせず、HTMLタグとして出力したいので、!{}を使ってエスケープせずに出力させます。

sample.pug
-
  const text = `これは<span class="red">サンプルテキスト</span>です。`

p !{text}
sample.html
<p>これは<span class="red">サンプルテキスト</span>です。</p>
スクリーンショット 2019-12-26 12.51.11.png

上手くいきました:thumbsup:

参考

5
1
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
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?