Home
last modified time | relevance | path

Searched refs:markdown (Results 1 – 25 of 99) sorted by relevance

1234

/plugin/commonmark/
H A Daction.php97 $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/
DLinkTrait.php8 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 …]
DStrikeoutTrait.php8 namespace cebe\markdown\inline;
19 protected function parseStrike($markdown) argument
21 if (preg_match('/^~~(.+?)~~/', $markdown, $matches)) {
30 return [['text', $markdown[0] . $markdown[1]], 2];
DUrlLinkTrait.php8 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/
Dimages.md1 ![Total Downloads](https://poser.pugx.org/cebe/markdown/downloads.png)
2 ![Build Status](https://secure.travis-ci.org/cebe/markdown.png "test1")
4 Here is an image tag: ![Total Downloads](https://poser.pugx.org/cebe/markdown/downloads.png).
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…
Dreferences.md2 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/
DREADME.md1 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 [![Build Status](https://travis-ci.org/cebe/markdown.svg?branch=master)](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 …]
DCHANGELOG.md45 - 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/
DGithubMarkdownTest.php8 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…
DMarkdownOLStartNumTest.php8 namespace cebe\markdown\tests;
10 use cebe\markdown\Markdown;
21 $markdown = new Markdown();
22 $markdown->keepListStartNumber = true;
23 return $markdown;
Dprofile.php7 $markdown = ''; variable
8 $markdown = file_get_contents(__DIR__ . '/markdown-data/specs.md'); variable
18 $pd = new \cebe\markdown\Markdown();
19 $pd->parse($markdown);
DBaseMarkdownTest.php8 namespace cebe\markdown\tests;
10 use cebe\markdown\Parser;
33 list($markdown, $html) = $this->getTestData($path, $file);
38 $this->assertEquals($html, $m->parse($markdown));
DMarkdownExtraTest.php3 namespace cebe\markdown\tests;
4 use cebe\markdown\MarkdownExtra;
DMarkdownTest.php8 namespace cebe\markdown\tests;
10 use cebe\markdown\Markdown;
/plugin/markdownextra/
DREADME.md11 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>
60markdown 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/
Dbuild-doc.js63 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/
DREADME.md4 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/
DTableTrait.php8 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/
Dmarkdown69 $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 DCommonmark.php15 …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/
Dmarkdown.js125 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/
Dgithub-basics.md33 markdown = Redcarpet.new("Hello World!")
34 puts markdown.to_html
/plugin/dirtylittlehelper/mermaid/editor/src/components/
DLinks.svelte121 #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/
Dclient.js23 markdown: false, property
36 messageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';
/plugin/mdpage/
DREADME.md27 * Using [cebe/markdown](https://github.com/cebe/markdown) to parse Markdown texts under [the MIT Li…

1234