Lines Matching refs:Markdown

13 A set of [PHP][] classes, each representing a [Markdown][] flavor, and a command line tool
17 Parsing Markdown to HTML is as simple as calling a single method (see [Usage](#usage)) providing a …
20 Extending the Markdown language with new elements is as simple as adding a new method to the class …
23 of the Markdown text as an abstract syntax tree (see [Extending the language](#extend)).
27 - **Traditional Markdown** according to <http://daringfireball.net/projects/markdown/syntax> ([try …
28 - **Github flavored Markdown** according to <https://help.github.com/articles/github-flavored-markd…
29 - **Markdown Extra** according to <http://michelf.ca/projects/php-markdown/extra/> (currently not f…
30 - Any mixed Markdown flavor you like because of its highly extensible structure (See documentation …
38 [Markdown]: http://en.wikipedia.org/wiki/Markdown "Markdown on Wikipedia"
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();
113 For all Markdown Flavors:
141 PHP Markdown to HTML converter
153 extra - Markdown Extra [3]
187 - [kartik-v/yii2-markdown](https://github.com/kartik-v/yii2-markdown) - Advanced Markdown editing a…
188 - [cebe/markdown-latex](https://github.com/cebe/markdown-latex) - Convert Markdown to LaTeX and PDF
197 Markdown consists of two types of language elements, I'll call them block and inline elements simla…
219 class MyMarkdown extends \cebe\markdown\Markdown
311 class MyMarkdown extends \cebe\markdown\Markdown
340 ### Composing your own Markdown flavor
345 Designing your Markdown flavor consists of four steps:
355 (`Markdown`, `GithubMarkdown` or `MarkdownExtra`) as your flavors base class.
362 The following shows the trait selection for traditional Markdown.
453 You may refer to the `consumeParagraph()` method of the `Markdown` and `GithubMarkdown` classes for…
464 [Parsedown]: http://parsedown.org/ "The Parsedown PHP Markdown parser"
494 [Parsedown]: http://parsedown.org/ "The Parsedown PHP Markdown parser"