Lines Matching refs:Parsedown
3 ## Parsedown section
27 Include `Parsedown.php` or install [the composer package](https://packagist.org/packages/erusev/par… argument
32 $Parsedown = new Parsedown(); argument
34 echo $Parsedown->text('Hello _Parsedown_!'); # prints: <p>Hello <em>Parsedown</em>!</p>
41 Parsedown is capable of escaping user-input within the HTML that it generates. Additionally Parsedo… argument
43 To tell Parsedown that it is processing untrusted user-input, use the following:
45 $parsedown = new Parsedown;
53 #### Security of Parsedown Extensions
55 Safe mode does not necessarily yield safe results when using extensions to Parsedown. Extensions sh…
62 $parsedown = new Parsedown; argument
70 **How does Parsedown work?** argument
74 …roach "line based". We believe that Parsedown is the first Markdown parser to use it. Since the re…