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) {
diff --git a/tests/unit/includes/MarkdownTest.php b/tests/unit/includes/MarkdownTest.php
index c1408b303..654fbd4c7 100644
--- a/tests/unit/includes/MarkdownTest.php
+++ b/tests/unit/includes/MarkdownTest.php
@@ -55,7 +55,7 @@ class MarkdownTest extends UnitTestCase {
'strong, b, em, i, bib' => [
'strong bold em italic boitalicld',
- '**strong** **bold** _em_ _italic_ **bo_italic_ld**'
+ '**strong** **bold** *em* *italic* **bo*italic*ld**'
],
'empty tags' => [
@@ -70,10 +70,6 @@ class MarkdownTest extends UnitTestCase {
'& lt < gt >',
'& lt < gt >'
],
- 'our escaped HTML entities' => [
- '&_lt_; &_gt_; &_amp_;',
- '&\_lt\_; &\_gt\_; &\_amp\_;'
- ],
'linebreak' => [
"line1
line2\nline3",
"line1 \nline2 line3"
@@ -84,15 +80,15 @@ class MarkdownTest extends UnitTestCase {
],
'unordered list' => [
'
',
@@ -118,12 +114,10 @@ class MarkdownTest extends UnitTestCase {
'<p>HTML text</p>',
'`HTML text
`' ], - 'pre' => [ - 'line with spaces', - '` line with spaces `' + '
one line with spaces', + '```\n one line with spaces \n```' ], - 'div p' => [ '
p