7
votes
F# XML parsing
let doc = new XmlDocument() in
doc.LoadXml xml;
doc.SelectNodes "/EmailList/Email/text()"
|> Seq.cast<XmlNode>
|> Seq.map (fun node -> node.Value)
…
0
votes
XML mode for XEmacs?
I used PSGML mode via XEmacs for several years and it is excellent. No support for RELAX NG, but terrific for anything you can dig up a DTD for.
…
3
votes
XSLT Tranformation
You can handle this pretty easily by just specifying your templates with the full path. The more specific template match will take precedence, so there shouldn't be any issues.
< …
