markdown-pap-0.0.1.5: markdown parser with papillon

Safe HaskellNone

Text.Markdown.Pap

Documentation

parse :: String -> Maybe [Text]Source

data Text Source

Constructors

Header Int String 
Paras [String] 
Code String 
List List 
Link String Address Title 
Image String Address Title 

Instances

Show Text 

type List = [List1]Source

data List1 Source

Constructors

OrdItem String List 
BulItem String List 

Instances

Show List1