XML (Extensible Markup Language) の解説

XMLの構造

XML宣言

<?xml version="1.0" encoding="utf-8" ?>

要素 (element)

<foo>bar</foo>

空要素

<foo></foo>
<foo/>

属性 (attribute)

<foo id="abc" />

xmlns属性

XML名前空間 (XML Namespace) を表します。

表示スタイルの設定

CSS (Cascading Style Sheets)

<?xml-stylesheet type="text/css" href="stylesheet.css"?>

XSL (Extensible Stylesheet Language)

<?xml-stylesheet type="text/xsl" href="transform.xsl"?>