diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/markdown.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/markdown.php b/include/markdown.php index e7b57c3ee..64f0a0854 100644 --- a/include/markdown.php +++ b/include/markdown.php @@ -283,9 +283,10 @@ function bb_to_markdown($Text, $options = []) { * If the HTML text can not get parsed it will return an empty string. * * @param string $html The HTML code to convert + * @param array $options an array of options to pass to the environment * @return string Markdown representation of the given HTML text, empty on error */ -function html2markdown($html,$options = []) { +function html2markdown($html, $options = []) { $markdown = ''; if(! $options) { |