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

Visual Studio Code 保存時のBeautifyが完了しない問題

Posted at

Visual Studio Codeのコード整形用拡張機能「Beautify」を使っていて、保存時に自動整形する設定をしている。

とあるHTMLを編集していざ保存しようとすると、

〇〇〇.htmlを保存しています:'Beautify'フォーマッタ(構成)を実行しています。

とメッセージが出たままいつまでたっても整形が完了しない。(保存は完了する)
さらに、このエラーが一度発生すると以降どのファイルを開いても同じ状況に陥り、VSCodeを再起動することでしか解消できない。

何かソースに問題あるのか調べたところ、metaタグの書き方がXHTML形式(>の前に/がある)だ
と再現することが判明。

問題が発生する書き方
<meta name="Description" content="xxxxxxxxxx" />

末尾のスラッシュを取ったところ、発生しなくなった。

末尾の/を取ると発生しなくなった。
<meta name="Description" content="xxxxxxxxxx">

metaタグの>前に、スラッシュを入れる事はHTML5の文法的には間違っていない(非推奨ではない)のに、なぜ整形エラーになるのかは謎。

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?