mirror of
https://github.com/erusev/parsedown.git
synced 2025-09-05 04:31:45 +02:00
Update Parsedown.php
Changes the htmlentities() to htmlspecialchars(). The htmlentities() has some problems encoding non-english words(like Chinese)
This commit is contained in:
@@ -634,7 +634,7 @@ class Parsedown
|
||||
foreach ($matches as $matches)
|
||||
{
|
||||
$element_text = $matches[1];
|
||||
$element_text = htmlentities($element_text, ENT_NOQUOTES);
|
||||
$element_text = htmlspecialchars($element_text, ENT_NOQUOTES);
|
||||
|
||||
# decodes escape sequences
|
||||
|
||||
|
Reference in New Issue
Block a user