Home
last modified time | relevance | path

Searched refs:renderAbsy (Results 1 – 12 of 12) sorted by relevance

/plugin/mdpage/vendor/cebe/markdown/inline/
H A DEmphStrongTrait.php77 return '<strong>' . $this->renderAbsy($block[1]) . '</strong>';
82 return '<em>' . $this->renderAbsy($block[1]) . '</em>';
86 abstract protected function renderAbsy($blocks); function
H A DStrikeoutTrait.php35 return '<del>' . $this->renderAbsy($block[1]) . '</del>';
39 abstract protected function renderAbsy($blocks); function
H A DLinkTrait.php225 return '[' . $this->renderAbsy($this->parseInline(substr($block['orig'], 1)));
232 . '>' . $this->renderAbsy($block['text']) . '</a>';
242 return '![' . $this->renderAbsy($this->parseInline(substr($block['orig'], 2)));
286 abstract protected function renderAbsy($blocks); function
/plugin/mdpage/src/DokuWiki/Plugin/Mdpage/
H A DMarkdownRendererTrait.php12 abstract protected function renderAbsy($blocks); function
58 $this->renderAbsy($block['content']);
178 $this->renderAbsy($itemLines);
200 $this->renderAbsy($block['content']);
231 $this->renderAbsy($cell);
243 $this->renderAbsy($cell);
270 $this->renderAbsy($block[1]);
280 $this->renderAbsy($block[1]);
316 $this->renderAbsy($this->parseInline(substr($block['orig'], $prefix_len)));
475 $this->renderAbsy($block[1]);
/plugin/mdpage/vendor/cebe/markdown/block/
H A DQuoteTrait.php58 return '<blockquote>' . $this->renderAbsy($block['content']) . "</blockquote>\n";
62 abstract protected function renderAbsy($absy); function
H A DHeadlineTrait.php65 return "<$tag>" . $this->renderAbsy($block['content']) . "</$tag>\n";
69 abstract protected function renderAbsy($absy); function
H A DTableTrait.php111 $tds .= "<$cellTag$align>" . trim($this->renderAbsy($cell)) . "</$cellTag>";
155 abstract protected function renderAbsy($absy); function
H A DListTrait.php179 $output .= '<li>' . $this->renderAbsy($itemLines). "</li>\n";
200 abstract protected function renderAbsy($absy); function
/plugin/mdpage/vendor/cebe/markdown/
H A DMarkdownExtra.php151 return "<$tag$attributes>" . rtrim($this->renderAbsy($block['content']), "# \t") . "</$tag>\n";
227 return '[' . $this->renderAbsy($this->parseInline(substr($block['orig'], 1)));
235 . $attributes . '>' . $this->renderAbsy($block['text']) . '</a>';
245 return '![' . $this->renderAbsy($this->parseInline(substr($block['orig'], 2)));
H A DParser.php61 $markup = $this->renderAbsy($absy);
86 $markup = $this->renderAbsy($absy);
198 protected function renderAbsy($blocks) function in cebe\\markdown\\Parser
242 return '<p>' . $this->renderAbsy($block['content']) . "</p>\n";
H A DREADME.md335 return '<del>' . $this->renderAbsy($element[1]) . '</del>';
/plugin/mdpage/vendor/cebe/markdown/tests/
H A DParserTest.php92 return [['text', '(C-' . $this->renderAbsy($inside) . ')'], $terminatingMarkerPos + 1];