diff options
-rw-r--r-- | include/html2bbcode.php | 1 | ||||
-rw-r--r-- | tests/unit/includes/MarkdownTest.php | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/include/html2bbcode.php b/include/html2bbcode.php index 71ea68dae..e2fa94326 100644 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -238,6 +238,7 @@ function html2bbcode($message) node2bbcode($doc, 'audio', array('src'=>'/(.+)/'), '[audio]$1', '[/audio]'); // node2bbcode($doc, 'iframe', array('src'=>'/(.+)/'), '[iframe]$1', '[/iframe]'); + node2bbcode($doc, 'code', array('class'=>'/(.+)/'), '[code=$1]', '[/code]'); node2bbcode($doc, 'code', array(), '[code]', '[/code]'); $message = $doc->saveHTML(); diff --git a/tests/unit/includes/MarkdownTest.php b/tests/unit/includes/MarkdownTest.php index 87cfc2899..960c15139 100644 --- a/tests/unit/includes/MarkdownTest.php +++ b/tests/unit/includes/MarkdownTest.php @@ -89,6 +89,10 @@ class MarkdownTest extends UnitTestCase { "[code]some code\n over multiple lines\n with indentation[/code]", "```\nsome code\n over multiple lines\n with indentation\n```" ], + 'code block with language' => [ + "[code=php]<?php\necho phpinfo();[/code]", + "```php\n<?php\necho phpinfo();\n```" + ], ]; } |