markdown-0.1.17.1: Convert Markdown to HTML, with XSS protection

Safe HaskellNone
LanguageHaskell98

Text.Markdown.Inline

Documentation

data Inline Source #

Constructors

InlineText Text 
InlineItalic [Inline] 
InlineBold [Inline] 
InlineCode Text 
InlineHtml Text 
InlineLink Text (Maybe Text) [Inline]

URL, title, content

InlineImage Text (Maybe Text) Text

URL, title, content

InlineFootnoteRef Integer

The footnote reference in the body

InlineFootnote Integer 

Instances

toInline :: RefMap -> Text -> [Inline] Source #