definition:
|
readHtmlFile :: HTML h => String -> IO [h]
readHtmlFile file = readFile file >>= return . parseHtmlString
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
------------------------------------------------------------------------------
--- Reads a file with HTML text and returns the corresponding HTML expressions.
--- @param file - the name of a file containing HTML text
--- @return a list of HTML expressions (if the file contains exactly one
--- HTML document, this list should contain exactly one element)
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
readHtmlFile
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
HTML.Base.HTML a => String -> Prelude.IO [a]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|