From e7982185e5ec505738ecb725d695b4c20a7e852d Mon Sep 17 00:00:00 2001 From: tamirvs Date: Mon, 16 Dec 2013 17:48:58 +0200 Subject: [PATCH] Added default option to Light and Medium parsers --- Parser/Preset/Light.php | 1 + Parser/Preset/Medium.php | 1 + 2 files changed, 2 insertions(+) diff --git a/Parser/Preset/Light.php b/Parser/Preset/Light.php index 603f920..aac1b95 100644 --- a/Parser/Preset/Light.php +++ b/Parser/Preset/Light.php @@ -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, diff --git a/Parser/Preset/Medium.php b/Parser/Preset/Medium.php index d47ba7a..3de4d1e 100644 --- a/Parser/Preset/Medium.php +++ b/Parser/Preset/Medium.php @@ -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,