| Safe Haskell | Safe-Infered |
|---|
Text.HTML.TagSoup.Fast
Description
Very fast TagSoup parser.
Works only with strict bytestrings.
Correctly handles HTML <script> and <style> tags.
This module is intended to be used in conjunction with the original tagsoup package:
import Text.HTML.TagSoup hiding (parseTags, renderTags) import Text.HTML.TagSoup.Fast
Remark that tags are returned in lower case and comments are not returned.
In long running multithreaded applications it's generally recommended to use
parseTagsT and work with [Tag Text] to reduce memory fragmentation.
- parseTags :: ByteString -> [Tag ByteString]
- renderTags :: [Tag ByteString] -> ByteString
- parseTagsT :: ByteString -> [Tag Text]
- renderTagsT :: [Tag Text] -> Text
- ensureUtf8Xml :: ByteString -> ByteString
Documentation
parseTags :: ByteString -> [Tag ByteString]Source
Parse a string to a list of tags.
parseTags "<div>&<script>x<y</script>" == [TagOpen "div" [],TagText "&",TagOpen "script" [],TagText "x<y",TagClose "script"]
renderTags :: [Tag ByteString] -> ByteStringSource
Show a list of tags, as they might have been parsed.
parseTagsT :: ByteString -> [Tag Text]Source
renderTagsT :: [Tag Text] -> TextSource
Alternative to renderTags working with Text
ensureUtf8Xml :: ByteString -> ByteStringSource
Decode XML to UTF-8 using encoding attribute of <?xml> tag.