

- [1] ''SXML'' <http://okmij.org/ftp/Scheme/SXML.html>
- [2] [[XML]] の [[S式]]表現。 
- [3] ''XML and Scheme'' <http://okmij.org/ftp/Scheme/xml.html#SXML-spec>

[4]

> SXML is an abstract syntax tree of an XML document. SXML is also a concrete representation of the XML Infoset in the form of S-expressions. The generic tree structure of SXML lends itself to a compact library of combinators for querying and transforming SXML.

([[名無しさん]])

[5]
例:
[PRE[
     (WEIGHT (@ (unit "pound"))
       (NET (@ (certified)) 67)
       (GROSS 95)
     )
]PRE]

XML 表現:
[PRE(XML)[
     <WEIGHT unit="pound">
       <NET certified="certified">67</NET>
       <GROSS>95</GROSS>
     </WEIGHT>
]PRE]

([[名無しさん]])


[6]
[CITE[Sxmlcnv]] <http://www.netfort.gr.jp/~kiyoka/sxmlcnv/index_ja.html>

>XML と SXML を相互変換するソフトウェアです。


([[名無しさん]])

