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">-> English page</a></p>
===
(p (a (@ (href "index.html")) "-> English page"))
参考
- XML Information Set