diff --git a/src/Components/Inlines/EscapeSequence.php b/src/Components/Inlines/EscapeSequence.php index 5008906..75ae4b8 100644 --- a/src/Components/Inlines/EscapeSequence.php +++ b/src/Components/Inlines/EscapeSequence.php @@ -4,7 +4,6 @@ namespace Erusev\Parsedown\Components\Inlines; use Erusev\Parsedown\AST\StateRenderable; use Erusev\Parsedown\Components\Inline; -use Erusev\Parsedown\Html\Renderables\RawHtml; use Erusev\Parsedown\Html\Renderables\Text; use Erusev\Parsedown\Parsing\Excerpt; use Erusev\Parsedown\State; @@ -13,17 +12,17 @@ final class EscapeSequence implements Inline { use WidthTrait, DefaultBeginPosition; - const SPECIALS = '\\`*_{}[]()>#+-.!|~'; + const SPECIALS = '!"#$%&\'()*+,-./:;<=>?@[\]^_`{|}~'; /** @var string */ - private $html; + private $text; /** - * @param string $html + * @param string $text */ - public function __construct($html) + public function __construct($text) { - $this->html = $html; + $this->text = $text; $this->width = 2; } @@ -42,11 +41,11 @@ final class EscapeSequence implements Inline } /** - * @return RawHtml + * @return Text */ public function stateRenderable() { - return new RawHtml($this->html); + return new Text($this->text); } /** @@ -54,6 +53,6 @@ final class EscapeSequence implements Inline */ public function bestPlaintext() { - return new Text($this->html); + return new Text($this->text); } } diff --git a/tests/data/escaping.html b/tests/data/escaping.html index ab1c41f..c8fa585 100644 --- a/tests/data/escaping.html +++ b/tests/data/escaping.html @@ -1,6 +1,6 @@
escaped *emphasis*.
escaped \*emphasis\* in a code span
escaped \*emphasis\* in a code block
-\ ` * _ { } [ ] ( ) > # + - . !
+\ ` * _ { } [ ] ( ) > # + - . !
one_two one_two
one*two one*two
\ No newline at end of file