Home
last modified time | relevance | path

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

1234

/plugin/mdpage/vendor/cebe/markdown/inline/
H A DLinkTrait.php8 namespace cebe\markdown\inline;
63 protected function parseLink($markdown) argument
74 'orig' => substr($markdown, 0, $offset),
82 while (isset($markdown[$i]) && $markdown[$i] === '[') {
94 protected function parseImage($markdown) argument
106 'orig' => substr($markdown, 0, $offset + 1),
114 while (isset($markdown[$i]) && $markdown[$i] === '[') {
122 protected function parseLinkOrImage($markdown) argument
124 …if (strpos($markdown, ']') !== false && preg_match('/\[((?>[^\]\[]+|(?R))*)\]/', $markdown, $textM…
127 $markdown = substr($markdown, $offset);
[all …]
H A 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];
H A 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/
H A 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…
H A 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/
H A DREADME.md6 [![Build Status](https://travis-ci.org/cebe/markdown.svg?branch=master)](http://travis-ci.org/cebe/
66 "cebe/markdown": "~1.2.0"
96 echo $parser->parse($markdown);
98 // use github markdown
100 echo $parser->parse($markdown);
102 // use markdown extra
104 echo $parser->parse($markdown);
131 Using github flavored markdown:
137 curl http://daringfireball.net/projects/markdown/syntax.text | bin/markdown > md.html
186 - [Bogardo/markdown-codepen](https://github.com/Bogardo/markdown-codepen) - shortcode to embed code…
[all …]
H A 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/commonmark/vendor/league/commonmark/src/Event/
H A DDocumentPreParsedEvent.php27 private MarkdownInputInterface $markdown;
29 public function __construct(Document $document, MarkdownInputInterface $markdown)
32 $this->markdown = $markdown;
42 return $this->markdown;
47 $this->markdown = $markdownInput;
26 private $markdown; global() variable in League\\CommonMark\\Event\\DocumentPreParsedEvent
28 __construct(Document $document, MarkdownInputInterface $markdown) global() argument
/plugin/mdpage/vendor/cebe/markdown/tests/
H A 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…
H A DMarkdownOLStartNumTest.php8 namespace cebe\markdown\tests;
10 use cebe\markdown\Markdown;
21 $markdown = new Markdown();
22 $markdown->keepListStartNumber = true;
23 return $markdown;
H A 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);
H A 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));
H A DMarkdownExtraTest.php3 namespace cebe\markdown\tests;
4 use cebe\markdown\MarkdownExtra;
H A DMarkdownTest.php8 namespace cebe\markdown\tests;
10 use cebe\markdown\Markdown;
/plugin/markdownextra/
H A 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/
H A 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/
H A 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/commonmark/vendor/league/commonmark/bin/
H A Dcommonmark
/plugin/mdpage/vendor/cebe/markdown/block/
H A 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/
H A Dmarkdown69 $markdown = file_get_contents("php://stdin"); variable
75 $markdown = file_get_contents($file); variable
82 $markup = $md->parse($markdown);
/plugin/commonmark/vendor/league/commonmark/src/
H A DMarkdownConverterInterface.php33 public function convertToHtml(string $markdown): RenderedContentInterface;
30 convertToHtml(string $markdown) global() argument
/plugin/revealjs/plugin/markdown/
H A 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/
H A Dgithub-basics.md33 markdown = Redcarpet.new("Hello World!")
34 puts markdown.to_html
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/
H A DCommonmark.php15 public static function RendtoDW($markdown, $frontmatter_tag = 'off'): string {
25 $FMresult = self::ExtractFrontmatter($markdown);
60 public static function ExtractFrontmatter($markdown) {
62 $result = $frontMatterExtension->getFrontMatterParser()->parse($markdown);
13 RendtoDW($markdown) global() argument
/plugin/revealjs/plugin/notes-server/
H A Dclient.js23 markdown: false, property in post.messageData
36 messageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';

1234