!=|u      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~Safe4 xml-conduitA cursor: contains an XML Node6 and pointers to its children, ancestors and siblings. xml-conduitThe child axis. XPath: 8the child axis contains the children of the context node. xml-conduitThe current node.  xml-conduit)The parent axis. As described in XPath: Hthe parent axis contains the parent of the context node, if there is one.[Every node but the root element of the document has a parent. Parent nodes will always be  NodeElements.! xml-conduit$The preceding-sibling axis. XPath: Xthe preceding-sibling axis contains all the preceding siblings of the context node [...]." xml-conduit$The following-sibling axis. XPath: Xthe following-sibling axis contains all the following siblings of the context node [...].# xml-conduitThe preceding axis. XPath: the preceding axis contains all nodes in the same document as the context node that are before the context node in document order, excluding any ancestors and excluding attribute nodes and namespace nodes.$ xml-conduitThe following axis. XPath: the following axis contains all nodes in the same document as the context node that are after the context node in document order, excluding any descendants and excluding attribute nodes and namespace nodes.% xml-conduitThe ancestor axis. XPath:  the ancestor axis contains the ancestors of the context node; the ancestors of the context node consist of the parent of context node and the parent's parent and so on; thus, the ancestor axis will always include the root node, unless the context node is the root node.& xml-conduitThe descendant axis. XPath: the descendant axis contains the descendants of the context node; a descendant is a child or a child of a child and so on; thus the descendant axis never contains attribute or namespace nodes.' xml-conduitYModify an axis by adding the context node itself as the first element of the result list.( xml-conduit*Apply a function to the result of an axis.) xml-conduitWCombine two axes so that the second works on the children of the results of the first.* xml-conduitZCombine two axes so that the second works on the descendants of the results of the first.+ xml-conduit[Combine two axes so that the second works on both the result nodes, and their descendants., xml-conduit!Apply an axis to a 'Cursor node'.- xml-conduit1Apply an axis to the children of a 'Cursor node'.. xml-conduit4Apply an axis to the descendants of a 'Cursor node'./ xml-conduit<Apply an axis to a 'Cursor node' as well as its descendants. xml-conduit get children !"#$%&'()*+,-./ !"%&'#$()*+,-./(1)1*1+1,1-1.1/1Safe>6 xml-conduitindent xml-conduitbefore   None>SX]g1 xml-conduitA list of attributes.4 xml-conduitDefines some top level namespace definitions to be used, in the form of (prefix, namespace). This has absolutely no impact on the meaning of your documents, but can increase readability by moving commonly used namespace declarations to the top level.5 xml-conduit9Specify how to turn the unordered attributes used by the Text.XML module into an ordered list.6 xml-conduitMDetermines if for a given text content the renderer should use a CDATA node. Default: False7 xml-conduit6Determines whether the XML declaration will be output. Default: True8 xml-conduitRender a stream of  s into a stream of  s. This function wraps around ; and ", so it produces optimally sized  s with minimal buffer copying.The output is UTF8 encoded.9 xml-conduitRender a stream of  s into a stream of s. This function wraps around ;,  and 8", so it produces optimally sized s with minimal buffer copying.: xml-conduitVConvenience function to create an ordering function suitable for use as the value of 5. The ordering function is created from an explicit ordering of the attributes, specified as a list of tuples, as follows: In each tuple, the first component is the A of an element, and the second component is a list of attributes names. When the given element is rendered, the attributes listed, when present, appear first in the given order, followed by any other attributes in arbitrary order. If an element does not appear, all of its attributes are rendered in arbitrary order.; xml-conduitRender a stream of  s into a stream of Zs. Builders are from the blaze-builder package, and allow the create of optimally sized  s with minimal buffer copying.< xml-conduitSame as ;\ but allows you to flush XML stream to ensure that all events at needed point are rendered.= xml-conduitConvert a stream of  es into a prettified one, adding extra whitespace. Note that this can change the meaning of your XML.> xml-conduitGenerate a complete XML Element.? xml-conduitGenerate a textual .@ xml-conduitGenerate a single attribute.A xml-conduit@Helper function that generates a valid attribute if input isn't , or  otherwise. xml-conduitpretty print attributes? xml-conduit self closing? xml-conduit namespaces to apply to top-level> xml-conduitElement' s subnodes.@ xml-conduitAttribute's name xml-conduitAttribute's value127654389:;<=>?@A;<89=234567:>?1@ANone124=>?HMQSVX3A/E xml-conduitA monad for parsing attributes. By default, it requires you to deal with all attributes present on an element, and will throw an exception if there are unhandled attributes. Use the s, r1 et al functions for handling an attribute, and uE if you would like to skip the rest of the attributes on an element. instance behaves like First5 monoid: it chooses first parser which doesn't fail.F xml-conduitA  NameMatcher8 describes which names a tag parser is allowed to match. Since 1.5.0S xml-conduitxWhether the original xmlns attributes should be retained in the parsed values. For more information on motivation, see: )https://github.com/snoyberg/xml/issues/38Default: False Since 1.2.1T xml-conduit,How to decode illegal character references ( &#[0-9]+; or &#x[0-9a-fA-F]+;).8Character references within the legal ranges defined by  &https://www.w3.org/TR/REC-xml/#NT-Char the standard? are automatically parsed. Others are passed to this function. Default:  const Nothing Since 1.7.1X xml-conduitAutomatically determine which UTF variant is being used. This function first checks for BOMs, removing them as necessary, and then check for the equivalent of <?xml for each of UTF-8, UTF-16LEBE, and UTF-32LE#BE. It defaults to assuming UTF-8.Y xml-conduitParses a byte stream into  %s. This function is implemented fully in Haskell using attoparsec-text for parsing. The produced error messages do not give line/column information, so you may prefer to stick with the parser provided by libxml-enumerator. However, this has the advantage of not relying on any C libraries.This relies on X& to determine character encoding, and [ to do the actual parsing.[ xml-conduitParses a character stream into  %s. This function is implemented fully in Haskell using attoparsec-text for parsing. The produced error messages do not give line/column information, so you may prefer to stick with the parser provided by libxml-enumerator. However, this has the advantage of not relying on any C libraries. Since 1.2.4\ xml-conduitSame as [*, but includes the position of each event. Since 1.2.4 xml-conduit.Is this codepoint a valid XML character? See  #https://www.w3.org/TR/xml/#charsets. This is proudly XML 1.0 only. xml-conduit[Determines whether a character is an XML white space. The list of white spaces is given by  S ::= (#x20 | #x9 | #xD | #xA)+in  :http://www.w3.org/TR/2008/REC-xml-20081126/#sec-common-syn.] xml-conduitGrabs the next piece of content if available. This function skips over any comments, instructions or entities, and concatenates all content until the next start or end tag.^ xml-conduit?Grabs the next piece of content. If none if available, returns #. This is simply a wrapper around ]._ xml-conduit0The most generic way to parse a tag. It takes a F2 to check whether this is a correct tag name, an E? to handle attributes, and then a parser to deal with content.EventsC are consumed if and only if the tag name and its attributes match.This function automatically absorbs its balancing closing tag, and will throw an exception if not all of the attributes or child elements are consumed. If you want to allow extra attributes, see u.JThis function automatically ignores comments, instructions and whitespace.` xml-conduitA simplified version of _ where the F1 result isn't forwarded to the attributes parser. Since 1.5.0a xml-conduitIA further simplified tag parser, which requires that no attributes exist.b xml-conduitKA further simplified tag parser, which ignores all attributes, if any existc xml-conduitIgnore an empty tag and all of its attributes. This does not ignore the tag recursively (i.e. it assumes there are no child elements). This function returns Just () if the tag matched. Since 1.5.0d xml-conduitSame as ~, without yielding  s.:set -XOverloadedStringsimport Conduit]runConduit $ parseLBS def "<a>content</a><b></b>" .| (ignoreTree "a" ignoreAttrs >> sinkList){[EventBeginElement (Name {nameLocalName = "b", ...}) [],EventEndElement (Name {nameLocalName = "b", ...}),EventEndDocument]VrunConduit $ parseLBS def "<a>content</a>" .| (ignoreTree "b" ignoreAttrs >> sinkList)[EventBeginElement (Name {nameLocalName = "a", ...}) [],EventContent (ContentText "content"),EventEndElement (Name {nameLocalName = "a", ...}),EventEndDocument]ZrunConduit $ parseLBS def "content<a></a>" .| (ignoreTree anyName ignoreAttrs >> sinkList)[EventContent (ContentText "content"),EventBeginElement (Name {nameLocalName = "a", ...}) [],EventEndElement (Name {nameLocalName = "a", ...}),EventEndDocument] Since 1.9.0e xml-conduitSame as }, without yielding  s.:set -XOverloadedStringsimport ConduitIrunConduit $ parseLBS def "<a>content</a>" .| (ignoreContent >> sinkList)[EventBeginElement (Name {nameLocalName = "a", ...}) [],EventContent (ContentText "content"),EventEndElement (Name {nameLocalName = "a", ...}),EventEndDocument]IrunConduit $ parseLBS def "content<a></a>" .| (ignoreContent >> sinkList){[EventBeginElement (Name {nameLocalName = "a", ...}) [],EventEndElement (Name {nameLocalName = "a", ...}),EventEndDocument]IrunConduit $ parseLBS def "content<a></a>" .| (ignoreContent >> sinkList){[EventBeginElement (Name {nameLocalName = "a", ...}) [],EventEndElement (Name {nameLocalName = "a", ...}),EventEndDocument] Since 1.9.0f xml-conduitSame as , without yielding  s.:set -XOverloadedStringsimport ConduitdrunConduit $ parseLBS def "<a>content</a><b></b>" .| (ignoreTreeContent "a" ignoreAttrs >> sinkList){[EventBeginElement (Name {nameLocalName = "b", ...}) [],EventEndElement (Name {nameLocalName = "b", ...}),EventEndDocument]]runConduit $ parseLBS def "<a>content</a>" .| (ignoreTreeContent "b" ignoreAttrs >> sinkList)[EventBeginElement (Name {nameLocalName = "a", ...}) [],EventContent (ContentText "content"),EventEndElement (Name {nameLocalName = "a", ...}),EventEndDocument]arunConduit $ parseLBS def "content<a></a>" .| (ignoreTreeContent anyName ignoreAttrs >> sinkList){[EventBeginElement (Name {nameLocalName = "a", ...}) [],EventEndElement (Name {nameLocalName = "a", ...}),EventEndDocument] Since 1.5.0g xml-conduitSame as , without yielding  s.:set -XOverloadedStringsimport ConduitWrunConduit $ parseLBS def "<a>content</a><b></b>" .| (ignoreAnyTreeContent >> sinkList){[EventBeginElement (Name {nameLocalName = "b", ...}) [],EventEndElement (Name {nameLocalName = "b", ...}),EventEndDocument]MrunConduit $ parseLBS def "text<b></b>" .| (ignoreAnyTreeContent >> sinkList){[EventBeginElement (Name {nameLocalName = "b", ...}) [],EventEndElement (Name {nameLocalName = "b", ...}),EventEndDocument] Since 1.5.0h xml-conduit0Get the value of the first parser which returns '. If no parsers succeed (i.e., return Just), this function returns . orE a b = choose [a, b]i xml-conduit0Get the value of the first parser which returns '. If no parsers succeed (i.e., return ), this function returns .j xml-conduit<Force an optional parser into a required parser. All of the _ functions, r, i and v deal with G parsers. Use this when you want to finally force something to happen.k xml-conduit5A helper function which reads a file from disk using enumFile$, detects character encoding using X, parses the XML using Y6, and then hands off control to your supplied parser.l xml-conduit"Parse an event stream from a lazy .m xml-conduit matching f matches name iff f name is true. Returns the matched . Since 1.5.0n xml-conduit Matches any . Returns the matched . Since 1.5.0o xml-conduit Matches any * from the given list. Returns the matched . Since 1.5.0r xml-conduit-Return the value for an attribute if present.s xml-conduitShortcut composition of j and r.u xml-conduitoSkip the remaining attributes on an element. Since this will clear the list of attributes, you must call this after any calls to s, t, etc.v xml-conduit4Keep parsing elements as long as the parser returns .w xml-conduitLike v@ but discards the results without building an intermediate list. Since 1.5.0x xml-conduit4Keep parsing elements as long as the parser returns ! or the ignore parser returns .y xml-conduitLike manyQ, but any tags and content the consumer doesn't match on are silently ignored.z xml-conduitLike v , but uses R so the result list can be streamed to downstream conduits without waiting for z to finish{ xml-conduitLike x , but uses R so the result list can be streamed to downstream conduits without waiting for { to finish| xml-conduitLike y , but uses R so the result list can be streamed to downstream conduits without waiting for | to finish} xml-conduitStream a single content  .Returns Just () if a content   was consumed, Nothing otherwise.:set -XOverloadedStringsimport Control.Monad (void)import ConduitJrunConduit $ parseLBS def "content<a></a>" .| void takeContent .| sinkList9[EventBeginDocument,EventContent (ContentText "content")]3If next event isn't a content, nothing is consumed.JrunConduit $ parseLBS def "<a>content</a>" .| void takeContent .| sinkList[EventBeginDocument] Since 1.5.0~ xml-conduitStream  ;s corresponding to a single XML element that matches given F and E', from the opening- to the closing-tag.:set -XOverloadedStringsimport Control.Monad (void)import Conduit`runConduit $ parseLBS def "<a>content</a><b></b>" .| void (takeTree "a" ignoreAttrs) .| sinkList[EventBeginDocument,EventBeginElement (Name {nameLocalName = "a", ...}) [],EventContent (ContentText "content"),EventEndElement (Name {nameLocalName = "a", ...})]`runConduit $ parseLBS def "<a>content</a><b></b>" .| void (takeTree "b" ignoreAttrs) .| sinkList[EventBeginDocument]If next  ' isn't an element, nothing is consumed.VrunConduit $ parseLBS def "text<a></a>" .| void (takeTree "a" ignoreAttrs) .| sinkList[EventBeginDocument]GIf an opening-tag is consumed but no matching closing-tag is found, an I is thrown.UrunConduit $ parseLBS def "<a><b></b>" .| void (takeTree "a" ignoreAttrs) .| sinkListt*** Exception: InvalidEndElement (Name {nameLocalName = "a", nameNamespace = Nothing, namePrefix = Nothing}) NothingJThis function automatically ignores comments, instructions and whitespace.Returns Just () if an element was consumed,  otherwise. Since 1.5.0 xml-conduitLike ~ , but can also stream a content  .:set -XOverloadedStringsimport Control.Monad (void)import ConduitgrunConduit $ parseLBS def "<a>content</a><b></b>" .| void (takeTreeContent "a" ignoreAttrs) .| sinkList[EventBeginDocument,EventBeginElement (Name {nameLocalName = "a", ...}) [],EventContent (ContentText "content"),EventEndElement (Name {nameLocalName = "a", ...})]grunConduit $ parseLBS def "<a>content</a><b></b>" .| void (takeTreeContent "b" ignoreAttrs) .| sinkList[EventBeginDocument]grunConduit $ parseLBS def "content<a></a><b></b>" .| void (takeTreeContent "a" ignoreAttrs) .| sinkList9[EventBeginDocument,EventContent (ContentText "content")] Since 1.5.0 xml-conduitLike ., without checking for tag name or attributes.:set -XOverloadedStringsimport Control.Monad (void)import ConduitNrunConduit $ parseLBS def "text<a></a>" .| void takeAnyTreeContent .| sinkList6[EventBeginDocument,EventContent (ContentText "text")]NrunConduit $ parseLBS def "</a><b></b>" .| void takeAnyTreeContent .| sinkList[EventBeginDocument]YrunConduit $ parseLBS def "<b><c></c></b></a>text" .| void takeAnyTreeContent .| sinkList[EventBeginDocument,EventBeginElement (Name {nameLocalName = "b", ...}) [],EventBeginElement (Name {nameLocalName = "c", ...}) [],EventEndElement (Name {nameLocalName = "c", ...}),EventEndElement (Name {nameLocalName = "b", ...})] Since 1.5.0 xml-conduitDefault implementation of V, which leaves the entity as-is. Numeric character references and the five standard entities (lt, gt, amp, quot, pos) are handled internally by the parser. xml-conduitcHTML4-compliant entity decoder. Handles the additional 248 entities defined by HTML 4 and XHTML 1.tNote that HTML 5 introduces a drastically larger number of entities, and this code does not recognize most of them. xml-conduitMatch a single  in a concise way. Note that ( is namespace sensitive: when using the  instance, use "{http://a/b}c" to match the tag c in the XML namespace  http://a/b xml-conduitFs can be combined with <|>_ xml-conduitUCheck if this is a correct tag name and return a value that can be used to get an  AttrParser-. If this fails, the function will return Nothing xml-conduitVGiven the value returned by the name checker, this function will be used to get an  AttrParser- appropriate for the specific tag. If the  AttrParser& fails, the function will also return Nothing xml-conduitdHandler function to handle the attributes and children of a tag, given the value return from the  AttrParsera xml-conduit#Check if this is a correct tag name xml-conduit:Handler function to handle the children of the matched tagb xml-conduit#Check if this is a correct tag name xml-conduit:Handler function to handle the children of the matched tagc xml-conduit#Check if this is a correct tag nameh xml-conduitThe first (preferred) parser xml-conduit:The second parser, only executed if the first parser failsi xml-conduit,List of parsers that will be tried in order. xml-conduit*Result of the first parser to succeed, or Nothing if no parser succeededj xml-conduit Error message xml-conduitOptional parser to be forced{ xml-conduit1Consuming parser that generates the result stream xml-conduit2Ignore parser that consumes elements to be ignored@EFGHIJLKNMOPQSTRUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~@YZ[\XklQVURTS_`ab^]cdefg}~FGHmonErstqpuhivwxyjz|{IJLKNMOPWNone2>SX9 xml-conduit)Parse a document from a stream of events. xml-conduitLTry to parse a document element (as defined in XML) from a stream of events. xml-conduitRender a document into events. xml-conduit&Render a document element into events.243QSRQRS234None2>QSX= xml-conduit$Note that the special element name {http:/www.snoyman.comxml2html}ie-cond with the single attribute cond0 is used to indicate an IE conditional comment.J  276543:QSRJ  QRS234567:None{1 xml-conduitA cursor: contains an XML 6 and pointers to its children, ancestors and siblings. xml-conduit=Something that can be used in a predicate check as a boolean. xml-conduitTThe type of an Axis that returns a list of Cursors. They are roughly modeled after  http://www.w3.org/TR/xpath/#axes.Axes can be composed with  , where e.g. f >=> g# means that on all results of the f axis, the ga axis will be applied, and all results joined together. Because Axis is just a type synonym for Cursor -> [Cursor]7, it is possible to use other standard functions like  or  similarly.The operators &|, &/, &// and &.// can be used to combine axes so that the second axis works on the context nodes, children, descendants, respectively the context node as well as its descendants of the results of the first axis.The operators $|, $/, $// and $.// can be used to apply an axis (right-hand side) to a cursor so that it is applied on the cursor itself, its children, its descendants, respectively itself and its descendants./Note that many of these operators also work on generalised AxesV that can return lists of something other than Cursors, for example Content elements. xml-conduit^Cut a cursor off from its parent. The idea is to allow restricting the scope of queries on it. xml-conduit Convert a  to a %. It will point to the document root. xml-conduit Convert a  to a  (without parents). xml-conduit'Filter cursors that don't pass a check. xml-conduit%Filter nodes that don't pass a check. xml-conduitEFilter elements that don't pass a check, and remove all non-elements. xml-conduitJFilter elements that don't pass a name check, and remove all non-elements. xml-conduit4Remove all non-elements. Compare roughly to XPath: A node test * is true for any node of the principal node type. For example, child::* will select all element children of the context node [...]. xml-conduit=Select only those elements with a matching tag name. XPath: A node test that is a QName is true if and only if the type of the node (see [5 Data Model]) is the principal node type and has an expanded-name equal to the expanded-name specified by the QName. xml-conduiteSelect only those elements with a loosely matching tag name. Namespace and case are ignored. XPath: A node test that is a QName is true if and only if the type of the node (see [5 Data Model]) is the principal node type and has an expanded-name equal to the expanded-name specified by the QName. xml-conduit.Select only text nodes, and directly give the Content values. XPath: /The node test text() is true for any text node."Note that this is not strictly an &, but will work with most combinators. xml-conduitWSelect attributes on the current element (or nothing if it is not an element). XPath: |the attribute axis contains the attributes of the context node; the axis will be empty unless the context node is an element"Note that this is not strictly an &, but will work with most combinators.FThe return list of the generalised axis contains as elements lists of Content; elements, each full list representing an attribute value. xml-conduitxSelect attributes on the current element (or nothing if it is not an element). Namespace and case are ignored. XPath: |the attribute axis contains the attributes of the context node; the axis will be empty unless the context node is an element"Note that this is not strictly an &, but will work with most combinators.FThe return list of the generalised axis contains as elements lists of Content; elements, each full list representing an attribute value. xml-conduit9Select only those element nodes with the given attribute. xml-conduitNSelect only those element nodes containing the given attribute key/value pair.( !"#$%&'()*+,-./( !"#$%&'()*+,-./     !"##$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRRSTTUVWXYZ[\]^_`abcdefgKJhijklmnopqrstuvwxyLzM{|}~tGDEeteDE'*Kr     *xml-conduit-1.9.0.0-LI0Vm73piOELv2fILOgJVBText.XML.Cursor.GenericText.XML.Stream.ParseText.XML.Stream.RenderText.XMLText.XML.UnresolvedText.XML.CursorText.XML.Stream.Tokenbase Control.Monad>=>+conduit-extra-1.3.1.1-BpPqs7iX6tAYaevsSDBImData.Conduit.Attoparsec PositionRange1data-default-class-0.1.2.0-FeIQ5tLoVZBHMSgrT9zptQData.Default.Classdef&xml-types-0.3.6-56MQ2lbfiw31ognZ51DOahData.XML.Types prologueAfterprologueDoctypeprologueBeforePrologueinstructionDatainstructionTarget Instruction MiscCommentMiscInstruction Miscellaneous namePrefix nameNamespace nameLocalNameName doctypeID doctypeNameDoctypePublicIDSystemID ExternalIDCursorchildnodeAxistoCursorparentprecedingSiblingfollowingSibling preceding followingancestor descendantorSelf&|&/&//&.//$|$/$//$.// $fShowCursor AttributesRenderSettingsrsPretty rsNamespaces rsAttrOrder rsUseCDATArsXMLDeclaration renderBytes renderText orderAttrs renderBuilderrenderBuilderFlushprettifytagcontentattr optionalAttr$fDefaultRenderSettings$fSemigroupAttributes$fMonoidAttributes AttrParser NameMatcherrunNameMatcher XmlExceptionInvalidEndElement InvalidEntityMissingAttributeUnparsedAttributesxmlErrorMessage xmlBadInput ParseSettingspsDecodeEntitiespsRetainNamespacespsDecodeIllegalCharactersDecodeIllegalCharactersDecodeEntitiesEventPos detectUtf parseBytes parseBytesPos parseText parseTextPos contentMaybetag' tagNoAttrtagIgnoreAttrsignoreEmptyTag ignoreTree ignoreContentignoreTreeContentignoreAnyTreeContentorEchooseforce parseFileparseLBSmatchinganyNameanyOfoptionalAttrRawrequireAttrRaw requireAttr ignoreAttrsmanymany_ manyIgnoremany' manyYieldmanyIgnoreYield manyYield' takeContenttakeTreetakeTreeContenttakeAnyTreeContentdecodeXmlEntitiesdecodeHtmlEntities$fDefaultParseSettings$fExceptionXmlException$fIsStringNameMatcher$fAlternativeNameMatcher$fApplicativeNameMatcher$fMonadThrowAttrParser$fAlternativeAttrParser$fApplicativeAttrParser$fFunctorAttrParser$fMonadAttrParser$fShowXmlException$fFunctorNameMatcherInvalidEventStreamContentAfterRootMissingRootElementInvalidInlineDoctypeMissingEndElementUnterminatedInlineDoctypereadFilesinkDoc writeFile renderLBS parseLBS_ fromEventselementFromEventstoEventselementToEvents parseText_ sinkTextDoc$fShowInvalidEventStream$fExceptionInvalidEventStreamUnresolvedEntityException XMLExceptionInvalidXMLFileElement elementNameelementAttributes elementNodesNode NodeElementNodeInstruction NodeContent NodeCommentDocumentdocumentPrologue documentRootdocumentEpilogue toXMLDocument toXMLElement toXMLNodefromXMLDocumentfromXMLElement fromXMLNode$fToMarkupNode$fToMarkupElement$fNFDataElement $fNFDataNode$fToMarkupDocument$fNFDataDocument$fExceptionXMLException$fShowXMLException$$fExceptionUnresolvedEntityException $fShowElement $fEqElement $fOrdElement $fDataElement $fShowNode$fEqNode $fOrdNode $fDataNode$fShowDocument $fEqDocument$fDataDocument$fShowUnresolvedEntityExceptionBooleanboolcut fromDocumentfromNodecheck checkNode checkElement checkName anyElementelement laxElement attribute laxAttribute hasAttribute attributeIsforceM$fBooleanEither$fBooleanMaybe $fBoolean[] $fBooleanBoolTokenBeginElement foldAttrsNSLevel defaultNSprefixes TAttributeTNameTokenTokenXMLDeclarationTokenInstructionTokenEndElement TokenContent TokenComment TokenDoctype TokenCDATAtokenToBuilderEventbytestring-0.10.8.2Data.ByteString.Internal ByteString&conduit-1.3.1.1-4efJU0FbitcKwEhzcLG27sData.Conduit.CombinatorsbuilderToByteString text-1.2.3.1Data.Text.InternalText Data.ByteString.Builder.InternalBuilder EventContent GHC.MaybeNothingGHC.Basemempty mkBeginToken AlternativetoValidXmlChar isXMLSpaceemptyJustMaybeData.ByteString.Lazy.InternalData.Conduit.Internal.Conduityield Data.StringIsString>>= Data.Foldable concatMap