エスケープせずにDescriptionを出力、Update info-card.pug (#11108)
HTMLのタグがエスケープされ、 misskey-hub.netのサーバー一覧で、iframeで読み込む際にタグがそのまま出力される状況が発生していた。 pugにおける仕様に則り、!=に変更、エスケープを行わないように。
This commit is contained in:
parent
6b2c92cb68
commit
d2f8ed95aa
|
@ -47,4 +47,4 @@ html
|
||||||
header#banner(style=`background-image: url(${meta.bannerUrl})`)
|
header#banner(style=`background-image: url(${meta.bannerUrl})`)
|
||||||
div#title= meta.name || host
|
div#title= meta.name || host
|
||||||
div#content
|
div#content
|
||||||
div#description= meta.description
|
div#description!= meta.description
|
||||||
|
|
Loading…
Reference in New Issue