/plugin/commonmark/vendor/league/commonmark/src/ |
H A D | HtmlRenderer.php | 89 * @param bool $inTightList 95 public function renderBlock(AbstractBlock $block, bool $inTightList = false): string argument 101 if (($result = $renderer->render($block, $this, $inTightList)) !== null) { 111 * @param bool $inTightList 115 public function renderBlocks(iterable $blocks, bool $inTightList = false): string argument 119 $result[] = $this->renderBlock($block, $inTightList);
|
H A D | ElementRendererInterface.php | 49 * @param bool $inTightList 55 public function renderBlock(AbstractBlock $block, bool $inTightList = false): string; argument 59 * @param bool $inTightList 63 public function renderBlocks(iterable $blocks, bool $inTightList = false): string; argument
|
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/ |
H A D | DWRenderer.php | 92 * @param bool $inTightList 98 public function renderBlock(AbstractBlock $block, bool $inTightList = false): string argument 104 if (($result = $renderer->render($block, $this, $inTightList)) !== null) { 114 * @param bool $inTightList 118 public function renderBlocks(iterable $blocks, bool $inTightList = false): string argument 122 $result[] = $this->renderBlock($block, $inTightList);
|
/plugin/commonmark/vendor/league/commonmark/src/Block/Renderer/ |
H A D | ParagraphRenderer.php | 27 * @param bool $inTightList 31 …ion render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) argument 37 if ($inTightList) {
|
H A D | ListItemRenderer.php | 29 * @param bool $inTightList 33 …ion render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) argument 39 $contents = $htmlRenderer->renderBlocks($block->children(), $inTightList);
|
H A D | BlockRendererInterface.php | 26 * @param bool $inTightList 30 …on render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false); argument
|
H A D | DocumentRenderer.php | 26 * @param bool $inTightList 30 …ion render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) argument
|
H A D | ThematicBreakRenderer.php | 27 * @param bool $inTightList 31 …ion render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) argument
|
H A D | HeadingRenderer.php | 27 * @param bool $inTightList 31 …ion render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) argument
|
H A D | IndentedCodeRenderer.php | 28 * @param bool $inTightList 32 …ion render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) argument
|
H A D | BlockQuoteRenderer.php | 27 * @param bool $inTightList 31 …ion render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) argument
|
H A D | FencedCodeRenderer.php | 28 * @param bool $inTightList 32 …ion render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) argument
|
H A D | HtmlBlockRenderer.php | 34 * @param bool $inTightList 38 …ion render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) argument
|
H A D | ListBlockRenderer.php | 27 * @param bool $inTightList 31 …ion render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) argument
|
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Block/ |
H A D | ListItemRenderer.php | 30 * @param bool $inTightList 34 …ction render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightList = false) argument 40 $result = $DWRenderer->renderBlocks($block->children(), $inTightList);
|
H A D | ThematicBreakRenderer.php | 28 * @param bool $inTightList 32 …ion render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) argument
|
H A D | DocumentRenderer.php | 28 * @param bool $inTightList 32 …ction render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightList = false) argument
|
H A D | IndentedCodeRenderer.php | 30 * @param bool $inTightList 34 …ction render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightList = false) argument
|
H A D | HeadingRenderer.php | 28 * @param bool $inTightList 32 …ction render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightList = false) argument
|
H A D | ParagraphRenderer.php | 28 * @param bool $inTightList 32 …ction render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightList = false) argument
|
H A D | BlockQuoteRenderer.php | 28 * @param bool $inTightList 32 …ction render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightList = false) argument
|
H A D | FootnoteRenderer.php | 35 * @param bool $inTightList 39 …ction render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightList = false) argument
|
H A D | FencedCodeRenderer.php | 29 * @param bool $inTightList 33 …ction render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightList = false) argument
|
H A D | ListBlockRenderer.php | 29 * @param bool $inTightList 33 …ction render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightList = false) argument
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/DisallowedRawHtml/ |
H A D | DisallowedRawHtmlBlockRenderer.php | 30 …ion render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) argument 32 $rendered = $this->htmlBlockRenderer->render($block, $htmlRenderer, $inTightList);
|