Arc Forumnew | comments | leaders | submitlogin
3 points by hjek 2963 days ago | link | parent

SML seems a bit terser than SXML since attributes aren't wrapped in parenthesis and don't use an @.

SML example from your link:

(tagname attr "value" attr2 "value2" (tagname2) (tagname3 "data"))

SXML example from your link:

(tag (@ (attr1 "value1") (attr2 "value2")) (nested "Text node") (empty))