markdown - Parsedown for PHP blockquotes -


i'm using parsedown project. having trouble quotes:

$text = ">here's quote <br><br> reply quote"; echo $parsedown->text($text); 

is outputting

<blockquote>     <p>         "here's quote "         <br>         <br>         " reply quote"     </p> </blockquote> 

whereas want blockquote end after second <br>, have reply simple p. how should text be, use newlines not breaks or something?

your string should be:

">here's quote <br><br>  reply quote" 

check here: http://parsedown.org/demo


Comments