definition:
|
showPageWithDocStyle :: String -> [BaseHtml] -> String
showPageWithDocStyle title body =
showHtmlPage $ HtmlPage title
(map (\f -> pageCSS $ styleBaseURL ++ "/css/" ++ f ++ ".css") cssIncludes)
body
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Generate a page with the default documentation style.
--- @param title - the title of the page
--- @param body - the main contents of the page
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
showPageWithDocStyle
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> [HTML.Base.BaseHtml] -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|