SXML


http://okmij.org/ftp/Scheme/SXML.html

S式? による XML Information Set の具象表現。

一般的な XML 表記は下記の SXML 表記に対応する

エレメント <em>...</em>

(em ...)

テキストノード hogehoge

"hogehoge"

属性ノード href="..."

(@ (href "..."))

コメントノード <!-- comment -->

(*COMMENT* "comment")

例:

<p><a href="index.html">-&gt; English page</a></p>

===

(p (a (@ (href "index.html"))
      "-> English page"))

参考

XML Information Set

http://www.w3.org/TR/xml-infoset/


Last modified : 2005/10/22 22:26:58 UTC