definition: |
main :: IO () main = do opts <- getArgs >>= processOptions defaultOpts let infile = inFile opts outfile = outFile opts case target opts of PDF -> if null infile then formatMarkdownInputAsPDF outfile else formatMarkdownFileAsPDF infile outfile TEX -> do mdtxt <- if null infile then getContents else readFile infile let texdoc = if standAlone opts then markdownText2CompleteLaTeX mdtxt else markdownText2LaTeX mdtxt if null outfile then putStrLn texdoc else writeFile outfile texdoc HTML -> do mdtxt <- if null infile then getContents else readFile infile let htmldoc = if standAlone opts then markdownText2CompleteHTML (title opts) mdtxt else showStaticHtmls (markdownText2HTML mdtxt) if null outfile then putStrLn htmldoc else writeFile outfile htmldoc |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{() |-> _} |
name: |
main |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Prelude.IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |