| /plugin/commonmark/ |
| H A D | action.php | 97 $markdown = $event->data; 100 $markdown = ltrim($markdown); 101 …$result = Commonmark::RendtoDW($markdown, $this->getConf('frontmatter_tag'), $this->getConf('rende… 103 elseif (preg_match('/\A<!DOCTYPE markdown>/',$markdown)) { 104 $markdown = preg_replace('/\A<!DOCTYPE markdown>\n/','',$markdown); 105 $markdown = ltrim($markdown); 106 $result = Commonmark::RendtoDW($markdown, $this->getConf('frontmatter_tag')); 116 while(($lastPos = strpos($markdown,PHP_EOL,$lastPos)) !== false){ 121 $this->FixHeadingLine($markdown); 140 public function FixHeadingLine(string $markdown) { argument [all …]
|
| /plugin/mdpage/vendor/cebe/markdown/inline/ |
| D | LinkTrait.php | 8 namespace cebe\markdown\inline; 63 protected function parseLink($markdown) argument 65 …ink', array_slice($this->context, 1)) && ($parts = $this->parseLinkOrImage($markdown)) !== false) { 74 'orig' => substr($markdown, 0, $offset), 82 while (isset($markdown[$i]) && $markdown[$i] === '[') { 94 protected function parseImage($markdown) argument 96 if (($parts = $this->parseLinkOrImage(substr($markdown, 1))) !== false) { 106 'orig' => substr($markdown, 0, $offset + 1), 114 while (isset($markdown[$i]) && $markdown[$i] === '[') { 122 protected function parseLinkOrImage($markdown) argument [all …]
|
| D | StrikeoutTrait.php | 8 namespace cebe\markdown\inline; 19 protected function parseStrike($markdown) argument 21 if (preg_match('/^~~(.+?)~~/', $markdown, $matches)) { 30 return [['text', $markdown[0] . $markdown[1]], 2];
|
| D | UrlLinkTrait.php | 8 namespace cebe\markdown\inline; 23 protected function parseUrl($markdown) argument 33 if (!in_array('parseLink', $this->context) && preg_match($pattern, $markdown, $matches)) { 39 return [['text', substr($markdown, 0, 4)], 4];
|
| /plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/ |
| D | images.md | 1  2  4 Here is an image tag: . 7 …al Downloads](https://poser.pugx.org/cebe/markdown/downloads.png)](https://packagist.org/packages/… 8 …r-ci.com/g/cebe/markdown/badges/quality-score.png?s=17448ca4d140429fd687c58ff747baeb6568d528)](htt… 9 …Build Status](https://secure.travis-ci.org/cebe/markdown.png "test2")](http://travis-ci.org/cebe/m… 10 …Build Status](https://secure.travis-ci.org/cebe/markdown.png "test3")](http://travis-ci.org/cebe/m…
|
| D | references.md | 2 of the [github flavored markdown][gfm]. 4 [fenced code blocks]: https://help.github.com/articles/github-flavored-markdown#fenced-code-blocks 5 "Fenced code block feature of github flavored markdown" 11 [this]: https://github.com/cebe/markdown
|
| /plugin/mdpage/vendor/cebe/markdown/ |
| D | README.md | 1 A super fast, highly extensible markdown parser for PHP 4 …able Version](https://poser.pugx.org/cebe/markdown/v/stable.png)](https://packagist.org/packages/c… 5 …al Downloads](https://poser.pugx.org/cebe/markdown/downloads.png)](https://packagist.org/packages/… 6 [](http://travis-ci.org/cebe/… 7 …zer-ci.com/g/cebe/markdown/badges/coverage.png?s=db6af342d55bea649307ef311fbd536abb9bab76)](https:… 8 …r-ci.com/g/cebe/markdown/badges/quality-score.png?s=17448ca4d140429fd687c58ff747baeb6568d528)](htt… 14 for converting markdown files to HTML files. 21 markdown text to the expected output in HTML. This is possible without dealing with complex and err… 22 It is also possible to hook into the markdown structure and add elements or read meta information u… 25 Currently the following markdown flavors are supported: [all …]
|
| D | CHANGELOG.md | 45 - improve compatibility with github flavored markdown 57 - Fixed the `bin/markdown` script to work with composer autoloader (c497bada0e15f61873ba6b2e29f4bb8… 67 …e changes see the [release message of 1.0.0-rc](https://github.com/cebe/markdown/releases/tag/1.0.… 69 You can try it out on the website: <http://markdown.cebe.cc/try> 81 …#67 The way to extend markdown has changed due to the introduction of an abstract syntax tree. See… 83 … not only fixes some issues with nested block elements but also allows manipulation of the markdown 104 - a command line tool for markdown parsing
|
| /plugin/mdpage/vendor/cebe/markdown/tests/ |
| D | GithubMarkdownTest.php | 8 namespace cebe\markdown\tests; 10 use cebe\markdown\GithubMarkdown; 35 $markdown = $this->createMarkdown(); 36 …$this->assertEquals("This is text<br />\nnewline\nnewline.", $markdown->parseParagraph("This is te… 37 $markdown->enableNewlines = true; 38 …$this->assertEquals("This is text<br />\nnewline<br />\nnewline.", $markdown->parseParagraph("This… 40 …$this->assertEquals("<p>This is text</p>\n<p>newline<br />\nnewline.</p>\n", $markdown->parse("Thi…
|
| D | MarkdownOLStartNumTest.php | 8 namespace cebe\markdown\tests; 10 use cebe\markdown\Markdown; 21 $markdown = new Markdown(); 22 $markdown->keepListStartNumber = true; 23 return $markdown;
|
| D | profile.php | 7 $markdown = ''; variable 8 $markdown = file_get_contents(__DIR__ . '/markdown-data/specs.md'); variable 18 $pd = new \cebe\markdown\Markdown(); 19 $pd->parse($markdown);
|
| D | BaseMarkdownTest.php | 8 namespace cebe\markdown\tests; 10 use cebe\markdown\Parser; 33 list($markdown, $html) = $this->getTestData($path, $file); 38 $this->assertEquals($html, $m->parse($markdown));
|
| D | MarkdownExtraTest.php | 3 namespace cebe\markdown\tests; 4 use cebe\markdown\MarkdownExtra;
|
| D | MarkdownTest.php | 8 namespace cebe\markdown\tests; 10 use cebe\markdown\Markdown;
|
| /plugin/markdownextra/ |
| D | README.md | 11 similar : markdown 24 …a. To use that markup in other pages, the content must be embedded in a markdown block. For exampl… 26 <markdown> 48 </markdown> 60 …markdown extra plugin, the best feature is .md suffix. And I love [tag plugin](https://www.dokuwik… 63 For syntax, refer to http://michelf.com/projects/php-markdown/extra/
|
| /plugin/sequencediagram/bower_components/lodash/lib/main/ |
| D | build-doc.js | 63 function postprocess(markdown) { argument 65 return markdown.replace(/\.(Symbol\.(?:[a-z]+[A-Z]?)+)/g, '[$1]'); 78 const markdown = docdown(options); 80 fs.writeFile(readmePath, postprocess(markdown), util.pitch);
|
| /plugin/markdownextra/lib/meltdown/ |
| D | README.md | 4 A JQuery plugin that adds Markdown Extra live previews, and a toolbar for common markdown actions. … 18 markdown: "this is a test" 26 * [js-markdown-extra](https://github.com/tanakahisateru/js-markdown-extra "Github link to js-markdo…
|
| /plugin/mdpage/vendor/cebe/markdown/block/ |
| D | TableTrait.php | 8 namespace cebe\markdown\block; 146 protected function parseTd($markdown) argument 149 return [['tableBoundary'], isset($markdown[1]) && $markdown[1] === ' ' ? 2 : 1]; 151 return [['text', $markdown[0]], 1];
|
| /plugin/mdpage/vendor/cebe/markdown/bin/ |
| D | markdown | 69 $markdown = file_get_contents("php://stdin"); variable 75 $markdown = file_get_contents($file); variable 82 $markup = $md->parse($markdown);
|
| /plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/ |
| H A D | Commonmark.php | 15 …public static function RendtoDW($markdown, $frontmatter_tag = 'off', $render_softbreaks = 0): arra… argument 28 $FMresult = self::ExtractFrontmatter($markdown); 100 public static function ExtractFrontmatter($markdown) { argument 102 $result = $frontMatterExtension->getFrontMatterParser()->parse($markdown);
|
| /plugin/revealjs/plugin/markdown/ |
| D | markdown.js | 125 function slidify( markdown, options ) { argument 140 while( matches = separatorRegex.exec( markdown ) ) { 152 content = markdown.substring( lastIndex, matches.index ); 168 …( wasHorizontal ? sectionStack : sectionStack[sectionStack.length-1] ).push( markdown.substring( l… 377 var markdown = getMarkdownFromSlide( section ); 379 section.innerHTML = marked( markdown ); 424 var options = Reveal.getConfig().markdown;
|
| /plugin/mdpage/vendor/cebe/markdown/tests/github-data/ |
| D | github-basics.md | 33 markdown = Redcarpet.new("Hello World!") 34 puts markdown.to_html
|
| /plugin/dirtylittlehelper/mermaid/editor/src/components/ |
| D | Links.svelte | 121 #markdown { 129 label[for='markdown'] { 135 label[for="markdown"] { 192 (markdown is base64 encoded for these urls) 195 <label for="markdown" class="button-style">Copy Markdown</label> 197 <input id="markdown" type="text" value={mdCode} on:click={onCopyMarkdown} />
|
| /plugin/revealjs/plugin/notes-server/ |
| D | client.js | 23 markdown: false, property 36 messageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';
|
| /plugin/mdpage/ |
| D | README.md | 27 * Using [cebe/markdown](https://github.com/cebe/markdown) to parse Markdown texts under [the MIT Li…
|