VS Code 擴充推薦 - XML
Posted on Sep 1, 2023 in VS Code , VS Code 擴充推薦 by Amo Chen ‐ 1 min read
如果工作上經常需要跟 XML 格式的資料或設定檔打交道的話,推薦可以在 VS Code 安裝由 Red Hat 開發的 XML 擴充。
本文環境
- VS Code
- XML
XML
XML 擴充是由 Red Hat 開發的 VS Code 擴充,提供檢查 XML 格式、排版等功能,安裝之後就能直接使用。
可以用以下 XML 內容進行測試(節錄自微軟 Sample XML File (books.xml) ):
<?xml version="1.0"?>
<catalog>
<book id="bk101">
<author>Gambardella, Matthew</author>
<title>XML Developer's Guide</title>
<genre>Computer</genre>
<price>44.95</price>
<publish_date>2000-10-01</publish_date>
<description>An in-depth look at creating applications
with XML.</description>
</book>
<book id="bk102">
<author>Ralls, Kim</author>
<title>Midnight Rain</title>
<genre>Fantasy</genre>
<price>5.95</price>
<publish_date>2000-12-16</publish_date>
<description>A former architect battles corporate zombies,
an evil sorceress, and her own childhood to become queen
of the world.</description>
</book>
</catalog>
如果需要檢查 XML 格式,可以按下快捷鍵 (macOS) Cmd + Shift + P
或 (windows) Ctrl + Shift + P
呼叫 Command Palette, 並輸入指令 XML: revalidate
選擇:
如果需要將文字改為註解或用 <![CDATA[
包起來,則是將文字圈選起來之後,再使用 Command Palette 並輸入指令 XML: surround
選擇即可:
總結
有些公司使用 XML 格式作為資料交換格式,所以 XML 格式是不免要接觸到的,如果有編輯/排版 XML 相關需求,可以善用 Red Hat 開發的 VS Code 擴充!
Enjoy!
References
XML - Visual Studio Marketplace