Added default option to Light and Medium parsers

This commit is contained in:
tamirvs 2013-12-16 17:48:58 +02:00
parent 9d3a2ac712
commit e7982185e5
2 changed files with 2 additions and 0 deletions

View file

@ -24,6 +24,7 @@ class Light extends MarkdownParser
'inline_link' => true, // [link text](url "optional title")
'reference_link' => true, // [link text] [id]
'shortcut_link' => false, // [link text]
'images' => true,
'html_block' => false,
'block_quote' => false,
'code_block' => false,

View file

@ -24,6 +24,7 @@ class Medium extends MarkdownParser
'inline_link' => true, // [link text](url "optional title")
'reference_link' => true, // [link text] [id]
'shortcut_link' => true, // [link text]
'images' => true,
'html_block' => false,
'block_quote' => false,
'code_block' => true,