sundown-0.3: Bindings to the sundown markdown library

Text.Sundown.Markdown

Synopsis

Documentation

data Extensions Source

A set of switches to enable or disable markdown features.

Constructors

Extensions 

Fields

extNoIntraEmphasis :: Bool

Turn off underscores insode a word does designating emphasis.

extTables :: Bool
 
extFencedCode :: Bool

Turns on a non-indentation form of code-blocks, by blocking off a regionwith ~ or `.

extAutolink :: Bool

Turn things that look like URLs and email addresses into links

extStrikethrough :: Bool

Surround text with `~` to designate it as struck through

extLaxHtmlBlocks :: Bool

Allow HTML markup inside of paragraphs, instead requireing tags to be on separate lines

extSpaceHeaders :: Bool
 
extSuperscript :: Bool
 

Instances

Flag Extensions