xml-conduit
from HaskellでXML
github
hackage
tutorial
日本語訳
#WIP
どこから学んでいけばいいのかわからんmrsekut.icon
https://www.yesodweb.com/book/xml
Yesodのtutorialがあった
Yesodで使われてるのか
https://haskell.e-bigmoon.com/yesod/book/appendices-xml.html
日本語記事あって、なんか言い回しが違和感あるなと思ったらyesodの訳だった
色々内包している?
xml-lensとか
https://hackage.haskell.org/package/xml-lens
https://www.slideshare.net/tanakh/xpath-inlens
xml-typesに合わせて実装されている
modules
Text.XML
DOM-based parsing and rendering. This is the most commonly used module.
Text.XML.Cursor
A wrapper around Text.XML which allows bidirectional traversing of the DOM, similar to XPath. (Note: Text.XML.Cursor.Generic is the same concept, but will work with any node representation.)
Text.XML.Unresolved
A slight modification to Text.XML which does not require all entities to be resolved at parsing. The datatypes are slightly more complicated here, and therefore this module is only recommended when you need to deal directly with raw entities.
Text.XML.Stream.Parse
Streaming parser, including some streaming parser combinators.
Text.XML.Stream.Render
Streaming renderer.
https://www.stackage.org/package/xml-conduit