(index ("markdown->sxml" 0) ("markdown->sxml*" 262) ("markdown-sxml->html-sxml" 501) ("markdown->html" 756))
(def (sig (procedure "(markdown->sxml input)" (id markdown->sxml))) (p "Parses the Markdown formatted " (tt "input") " and returns an SXML representation of the resulting HTML document. " (tt "input") " may be a string, an input port or a list of characters."))
(def (sig (procedure "(markdown->sxml* input)" (id markdown->sxml*))) (p "Parses the Markdown formatted " (tt "input") " and returns an SXML representation of it. " (tt "input") " may be a string, an input port or a list of characters."))
(def (sig (procedure "(markdown-sxml->html-sxml markdown-sxml)" (id markdown-sxml->html-sxml))) (p "Turns the " (tt "markdown-sxml") " structure as returned by " (tt "markdown->sxml*") " into an SXML structure as returned by " (tt "markdown->sxml") "."))
(def (sig (procedure "(markdown->html input)" (id markdown->html))) (p "Convenience procedure which calls " (tt "markdown->sxml") " on " (tt "input") " and serializes the resulting HTML document to " (tt "(current-output-port)") "."))
