Tool Hub

XML フォーマッタ

XML ドキュメントのフォーマット、縮小化および検証

XML ドキュメントをフォーマットします — 設定可能なインデントで整形するか、タグ間の空白を除去して圧縮します。検証はブラウザ組み込みの DOMParser を使用します。

出力
<?xml version="1.0" encoding="UTF-8"?>
<library>
  <book id="1">
    <title>
      1984
    </title>
    <author>
      George Orwell
    </author>
  </book>
  <book id="2">
    <title>
      Brave New World
    </title>
    <author>
      Aldous Huxley
    </author>
  </book>
</library>

使い方

  1. Paste your XML document into the input.
  2. Choose Pretty-print to indent the tree or Minify to collapse it to a single line.
  3. The document is validated with the browser's DOMParser, and any syntax error is reported with its location.
  4. Copy the result; everything is processed in your browser.

  • Pasting <root><item id="1">a</item><item id="2">b</item></root> and pretty-printing nests each <item> on its own indented line under <root>.
  • If a closing tag is missing, the DOMParser check reports the line and column of the error so you can fix malformed XML quickly.

本番環境で使用する前に出力を検証してください。保証なし — 詳細は 利用規約.