Home
last modified time | relevance | path

Searched refs:Markdown (Results 26 – 50 of 69) sorted by path

123

/plugin/dw2markdown/
H A DREADME3 Render a DW page to Markdown
H A Dplugin.info.txt6 desc Render a DW page to Markdown
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst395 For instance, if you want to create a tag that converts a Markdown formatted
/plugin/gitbacked/
H A DCHANGELOG.md135 - Use Markdown for the GitHub README.
/plugin/markdownextra/
H A DLicense.text1 PHP Markdown & Extra
6 Based on Markdown
22 * Neither the name "Markdown" nor the names of its contributors may
H A DREADME.md1 # PHP Markdown Extra plugin for DokuWiki
3 description: Parses PHP Markdown Extra blocks.
24 If the page name ends with ''.md'' suffix, it gets automatically parsed using PHP Markdown Extra. T…
H A Dmarkdown.php59 function Markdown($text) { function
190 return Markdown($text);
204 if ($lite == '' && $encode == '') $text = Markdown($text);
H A Dplugin.info.txt5 name PHP Markdown Extra plugin
6 desc Parses PHP Markdown Extra blocks.
H A Dsyntax.php41 case DOKU_LEXER_UNMATCHED : return array($state, Markdown($match));
/plugin/markdownextra/lib/meltdown/
H A DREADME.md1 Meltdown (Markdown Extra Live Toolbox)
4 A JQuery plugin that adds Markdown Extra live previews, and a toolbar for common markdown actions. …
/plugin/markdownextra/lib/meltdown/js/
H A Djquery.meltdown.js24 var mde = Markdown;
/plugin/markdownextra/lib/meltdown/js/lib/
H A Djs-markdown-extra.js59 function Markdown(text) { function
2902 this.Markdown = Markdown;
/plugin/mdpage/
H A DREADME.md1 # Markdown plugin for DokuWiki
27 * Using [cebe/markdown](https://github.com/cebe/markdown) to parse Markdown texts under [the MIT Li…
H A Dplugin.info.txt5 name Markdown Page Plugin
6 desc Write your own Markdown page
H A Dsyntax.php7 use DokuWiki\Plugin\Mdpage\Markdown; alias
99 $flavor = Markdown::GITHUB_FLAVORED;
102 $flavor = Markdown::MARKDOWN_EXTRA;
105 $flavor = Markdown::TRADITIONAL;
108 $flavor = Markdown::GITHUB_FLAVORED;
117 $result = Markdown::parseWithRenderer($renderer, $match, $data, $context);
/plugin/mdpage/src/DokuWiki/Plugin/Mdpage/
H A DMarkdown.php5 class Markdown { class
18 $parser = new Markdown\GitHubFlavored($renderer, $data, $context);
21 $parser = new Markdown\MarkdownExtra($renderer, $data, $context);
24 $parser = new Markdown\Traditional($renderer, $data, $context);
/plugin/mdpage/src/DokuWiki/Plugin/Mdpage/Markdown/
H A DGitHubFlavored.php3 namespace DokuWiki\Plugin\Mdpage\Markdown;
H A DMarkdownExtra.php3 namespace DokuWiki\Plugin\Mdpage\Markdown;
H A DTraditional.php3 namespace DokuWiki\Plugin\Mdpage\Markdown;
7 class Traditional extends \cebe\markdown\Markdown {
/plugin/mdpage/vendor/cebe/markdown/
H A DCHANGELOG.md63 …PI which is used when extending the Markdown parser. The external API has no breaking changes. The…
65Markdown more accurately and uses an abstract syntax tree as the internal representation of the pa…
71 …hn MacFarlane](http://johnmacfarlane.net/) which you can use to compare Markdown output of differe…
78 - #25 Added partial support for the Markdown Extra flavor
80 - #67 All Markdown classes are now composed out of php traits
102 - Complete implementation of the original Markdown spec
H A DCONTRIBUTING.md27 The Markdown parser classes are tested with [PHPUnit](https://phpunit.de/). For each test case ther…
29 where the input file contains the Markdown and the output file contains the expected HTML.
H A DGithubMarkdown.php15 class GithubMarkdown extends Markdown
H A DMarkdown.php15 class Markdown extends Parser class
H A DMarkdownExtra.php17 class MarkdownExtra extends Markdown
H A DREADME.md38 [Markdown]: http://en.wikipedia.org/wiki/Markdown "Markdown on Wikipedia"
84 - Traditional Markdown: `$parser = new \cebe\markdown\Markdown();`
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]
219 class MyMarkdown extends \cebe\markdown\Markdown
311 class MyMarkdown extends \cebe\markdown\Markdown
340 ### Composing your own Markdown flavor
[all …]

123