thephpleague / html-to-markdown

Convert HTML to Markdown with PHP
MIT License
1.77k stars 205 forks source link

Possible horizontal rules aren't escaped #65

Closed marijnvdwerf closed 7 years ago

marijnvdwerf commented 8 years ago

Input

<p>---</p>
<p>- - - </p>
<p>--</p>

Actual


---

- - -

--

Expected

\---

\- - -

--
andreskrey commented 7 years ago

109 solves this!