This module contains a very simple parser for HTML documents.
Author: Michael Hanus
Version: October 2022
readHtmlFile
:: HTML a => String -> IO [a]
Reads a file with HTML text and returns the corresponding HTML expressions. |
parseHtmlString
:: HTML a => String -> [a]
Transforms an HTML string into a list of BaseHTML
expressions.
|
Reads a file with HTML text and returns the corresponding HTML expressions.
|
Transforms an HTML string into a list of |