XML属性

<?xml version="1.0" encoding="UTF-8"?>
<diary>
    <article>
        <no>
            記事番号
        </no>
        <date>
            年-月-日
        </date>
        <title>
            記事タイトル
        </title>
        <category>
            カテゴリのユニークID
        </category>
        <contents>
            記事の中身
        </contents>
        <imagenum>
            記事内の画像の数
        </imageum>
        <comments>
            <comment>
                <username>コメントを書いた人</username>
                <timestamp>コメントを書いたエポック秒</timestamp>
                <contents>
                コメントの内容
                </contents>
            </comment>
            <comment>
                <username>コメントを書いた人</username>
                <timestamp>コメントを書いたエポック秒</timestamp>
                <contents>
                コメントの内容
                </contents>
            </comment>
            何個でもできる。でも、コメント自体には対応するつもりはない。
        </comments>
    </article>
</diary>