Lines Matching refs:parser

1 A super fast, highly extensible markdown parser for PHP
84 - Traditional Markdown: `$parser = new \cebe\markdown\Markdown();`
85 - Github Flavored Markdown: `$parser = new \cebe\markdown\GithubMarkdown();`
86 - Markdown Extra: `$parser = new \cebe\markdown\MarkdownExtra();`
95 $parser = new \cebe\markdown\Markdown();
96 echo $parser->parse($markdown);
99 $parser = new \cebe\markdown\GithubMarkdown();
100 echo $parser->parse($markdown);
103 $parser = new \cebe\markdown\MarkdownExtra();
104 echo $parser->parse($markdown);
107 $parser = new \cebe\markdown\GithubMarkdown();
108 echo $parser->parseParagraph($markdown);
111 You may optionally set one of the following options on the parser object:
115 - `$parser->html5 = true` to enable HTML5 output instead of HTML4.
116 - `$parser->keepListStartNumber = true` to enable keeping the numbers of ordered lists as specified…
121 - `$parser->enableNewlines = true` to convert all newlines to `<br/>`-tags. By default only newline…
189 - [softark/creole](https://github.com/softark/creole) - A creole markup parser
202 This markdown parser allows you to extend the markdown language by changing existing elements behav…
203 new block and inline elements. You do this by extending from the parser class and adding/overriding…
301 The parser method will return an array containing the element of the abstract sytnax tree and an of…
464 [Parsedown]: http://parsedown.org/ "The Parsedown PHP Markdown parser"
469 ### Why another markdown parser?
477 A [real parser][] should use context aware methods that walk trough the text and
490 to using callbacks to inject functionallity into the parser.
492 [real parser]: http://en.wikipedia.org/wiki/Parsing#Types_of_parser
494 [Parsedown]: http://parsedown.org/ "The Parsedown PHP Markdown parser"