thephpleague / html-to-markdown

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

Escape blockquote-like paragraphs (#77) #103

Closed andreskrey closed 8 years ago

andreskrey commented 8 years ago

Hi!

This solves issue #77. Blockquote-like paragraphs are escaped with a . I also added the corresponding tests.

Input:

<p>&gt; &gt; Look at me! &lt; &lt;</p>

Actual:

\> > Look at me! < <

Expected:

\> > Look at me! < <

colinodell commented 8 years ago

Merged :) Thanks for addressing this!