Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CentralNic
parsedown
Commits
e497acb6
Commit
e497acb6
authored
Nov 16, 2013
by
Emanuil Rusev
Browse files
escape sequences with double digit codes do not get decoded properly
parent
30e436ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Parsedown.php
View file @
e497acb6
...
...
@@ -66,7 +66,7 @@ class Parsedown
{
if
(
strpos
(
$text
,
$escape_sequence
)
!==
FALSE
)
{
$code
=
"
\x1A
"
.
'\\'
.
$index
;
$code
=
"
\x1A
"
.
'\\'
.
$index
.
';'
;
$text
=
str_replace
(
$escape_sequence
,
$code
,
$text
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment