aboutsummaryrefslogtreecommitdiffstats
path: root/include/markdown.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-09-16 19:05:12 -0700
committerzotlabs <mike@macgirvin.com>2018-09-16 19:05:12 -0700
commit27617efbfbeb2c7a608093a5dfd58679a8393de0 (patch)
treeb99dc3609e2caedc1598659436e26da63420d95a /include/markdown.php
parent6ab12597f508294d37fddeca789033c1729600d8 (diff)
parent07cd1d1272bd301c2f41f5579697754ccbbf5ae3 (diff)
downloadvolse-hubzilla-27617efbfbeb2c7a608093a5dfd58679a8393de0.tar.gz
volse-hubzilla-27617efbfbeb2c7a608093a5dfd58679a8393de0.tar.bz2
volse-hubzilla-27617efbfbeb2c7a608093a5dfd58679a8393de0.zip
Merge branch 'dev'
Diffstat (limited to 'include/markdown.php')
-rw-r--r--include/markdown.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/markdown.php b/include/markdown.php
index e5f5b9369..0d810764f 100644
--- a/include/markdown.php
+++ b/include/markdown.php
@@ -295,6 +295,8 @@ function bb_to_markdown($Text, $options = []) {
*/
function html2markdown($html,$options = []) {
$markdown = '';
+
+ $html = htmlspecialchars($html);
$environment = Environment::createDefaultEnvironment($options);
$environment->addConverter(new TableConverter());