/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/ |
H A D | DWRenderer.php | 18 use League\CommonMark\Block\Element\AbstractBlock; alias 91 * @param AbstractBlock $block 98 public function renderBlock(AbstractBlock $block, bool $inTightList = false): string 113 * @param AbstractBlock[] $blocks
|
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Block/ |
H A D | BlockQuoteRenderer.php | 18 use League\CommonMark\Block\Element\AbstractBlock; alias 32 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…
|
H A D | DocumentRenderer.php | 18 use League\CommonMark\Block\Element\AbstractBlock; alias 32 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…
|
H A D | FencedCodeRenderer.php | 18 use League\CommonMark\Block\Element\AbstractBlock; alias 33 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…
|
H A D | FootnoteContainerRenderer.php | 20 use League\CommonMark\Block\Element\AbstractBlock; alias 32 …public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTight…
|
H A D | FootnoteRenderer.php | 20 use League\CommonMark\Block\Element\AbstractBlock; alias 39 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…
|
H A D | HeadingRenderer.php | 18 use League\CommonMark\Block\Element\AbstractBlock; alias 32 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…
|
H A D | IndentedCodeRenderer.php | 18 use League\CommonMark\Block\Element\AbstractBlock; alias 34 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…
|
H A D | ListBlockRenderer.php | 18 use League\CommonMark\Block\Element\AbstractBlock; alias 33 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…
|
H A D | ListItemRenderer.php | 18 use League\CommonMark\Block\Element\AbstractBlock; alias 34 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…
|
H A D | ParagraphRenderer.php | 18 use League\CommonMark\Block\Element\AbstractBlock; alias 32 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…
|
H A D | TableCellRenderer.php | 21 use League\CommonMark\Block\Element\AbstractBlock; alias 28 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…
|
H A D | TableRenderer.php | 21 use League\CommonMark\Block\Element\AbstractBlock; alias 28 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…
|
H A D | TableRowRenderer.php | 21 use League\CommonMark\Block\Element\AbstractBlock; alias 28 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…
|
H A D | TableSectionRenderer.php | 21 use League\CommonMark\Block\Element\AbstractBlock; alias 28 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…
|
H A D | ThematicBreakRenderer.php | 18 use League\CommonMark\Block\Element\AbstractBlock; alias 32 …public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTight…
|
/plugin/commonmark/vendor/league/commonmark/ |
H A D | CHANGELOG-0.x.md | 74 - Removed the `AbstractBlock::acceptsLines()` method 75 - Removed the now-useless constructor from `AbstractBlock` 511 - `AbstractBlock` and `AbstractInline` both extend from `Node` 513 - Other major changes to `AbstractBlock`: 515 - `setParent()` now expects a `Node` instead of an `AbstractBlock` 526 - Walker passed as second argument instead of `AbstractBlock` 532 - Modified `AbstractBlock::setLastLineBlank()` 534 - `AbstractBlock::setLastLineBlank()` is now a setter method for `AbstractBlock::$lastLineBlank` 535 - `AbstractBlock::handleRemainingContents()` is no longer abstract 547 - Extend `AbstractBlock` and implement `InlineContainer` instead [all …]
|
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/ |
H A D | AbstractBlock.php | 26 abstract class AbstractBlock extends Node class 80 * @param AbstractBlock $block 84 abstract public function canContain(AbstractBlock $block): bool;
|
H A D | AbstractStringContainerBlock.php | 24 abstract class AbstractStringContainerBlock extends AbstractBlock implements StringContainerInterfa…
|
H A D | BlockQuote.php | 22 class BlockQuote extends AbstractBlock 24 public function canContain(AbstractBlock $block): bool
|
H A D | Document.php | 24 class Document extends AbstractBlock 44 public function canContain(AbstractBlock $block): bool
|
H A D | FencedCode.php | 133 public function canContain(AbstractBlock $block): bool
|
H A D | Heading.php | 61 public function canContain(AbstractBlock $block): bool
|
H A D | HtmlBlock.php | 65 public function canContain(AbstractBlock $block): bool
|
H A D | IndentedCode.php | 22 public function canContain(AbstractBlock $block): bool
|