/plugin/commonmark/vendor/league/commonmark/src/ |
H A D | ContextInterface.php | 17 use League\CommonMark\Block\Element\AbstractBlock; alias 29 * @return AbstractBlock|null 31 public function getTip(): ?AbstractBlock; 34 * @param AbstractBlock|null $block 38 public function setTip(?AbstractBlock $block); 58 * @return AbstractBlock 60 public function getContainer(): AbstractBlock; 63 * @param AbstractBlock $container 70 * @param AbstractBlock $block 74 public function addBlock(AbstractBlock $block); [all …]
|
H A D | Context.php | 17 use League\CommonMark\Block\Element\AbstractBlock; alias 37 * @var AbstractBlock|null 42 * @var AbstractBlock 100 public function getTip(): ?AbstractBlock 106 * @param AbstractBlock|null $block 110 public function setTip(?AbstractBlock $block) 132 public function getContainer(): AbstractBlock 138 * @param AbstractBlock $container 142 public function setContainer(AbstractBlock $container) 149 public function addBlock(AbstractBlock $block) [all …]
|
H A D | UnmatchedBlockCloser.php | 17 use League\CommonMark\Block\Element\AbstractBlock; alias 30 * @var AbstractBlock 35 * @var AbstractBlock 50 * @param AbstractBlock $block 54 public function setLastMatchedContainer(AbstractBlock $block) 67 /** @var AbstractBlock $oldTip */
|
H A D | ElementRendererInterface.php | 17 use League\CommonMark\Block\Element\AbstractBlock; alias 48 * @param AbstractBlock $block 55 public function renderBlock(AbstractBlock $block, bool $inTightList = false): string; 58 * @param AbstractBlock[] $blocks
|
H A D | HtmlRenderer.php | 17 use League\CommonMark\Block\Element\AbstractBlock; alias 88 * @param AbstractBlock $block 95 public function renderBlock(AbstractBlock $block, bool $inTightList = false): string 110 * @param AbstractBlock[] $blocks
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/ |
H A D | TableRow.php | 18 use League\CommonMark\Block\Element\AbstractBlock; alias 22 final class TableRow extends AbstractBlock 24 public function canContain(AbstractBlock $block): bool 40 * @return AbstractBlock[] 45 return $child instanceof AbstractBlock;
|
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/ |
H A D | ListBlock.php | 23 class ListBlock extends AbstractBlock 63 … return $this->lastChild() instanceof AbstractBlock && $this->lastChild()->endsWithBlankLine(); 69 public function canContain(AbstractBlock $block): bool 91 if (!($item instanceof AbstractBlock)) { 104 …if ($subItem instanceof AbstractBlock && $subItem->endsWithBlankLine() && ($item !== $this->lastCh…
|
H A D | ThematicBreak.php | 19 class ThematicBreak extends AbstractBlock 21 public function canContain(AbstractBlock $block): bool
|
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 | AbstractBlock.php | 26 abstract class AbstractBlock extends Node class 80 * @param AbstractBlock $block 84 abstract public function canContain(AbstractBlock $block): bool;
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/TableOfContents/Node/ |
H A D | TableOfContentsPlaceholder.php | 14 use League\CommonMark\Block\Element\AbstractBlock; alias 17 final class TableOfContentsPlaceholder extends AbstractBlock 19 public function canContain(AbstractBlock $block): bool
|
/plugin/commonmark/vendor/league/commonmark/src/Block/Renderer/ |
H A D | BlockRendererInterface.php | 17 use League\CommonMark\Block\Element\AbstractBlock; alias 24 * @param AbstractBlock $block 30 …public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTight…
|
H A D | DocumentRenderer.php | 17 use League\CommonMark\Block\Element\AbstractBlock; alias 30 …public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTight…
|
H A D | ThematicBreakRenderer.php | 17 use League\CommonMark\Block\Element\AbstractBlock; alias 31 …public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTight…
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Node/ |
H A D | FootnoteContainer.php | 17 use League\CommonMark\Block\Element\AbstractBlock; alias 23 final class FootnoteContainer extends AbstractBlock 25 public function canContain(AbstractBlock $block): bool
|
H A D | Footnote.php | 17 use League\CommonMark\Block\Element\AbstractBlock; alias 24 final class Footnote extends AbstractBlock 41 public function canContain(AbstractBlock $block): bool
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Event/ |
H A D | AttributesListener.php | 17 use League\CommonMark\Block\Element\AbstractBlock; alias 44 if ($target instanceof AbstractBlock || $target instanceof AbstractInline) { 59 …if ($node instanceof AbstractBlock && $node->endsWithBlankLine() && $node->next() && $node->previo… 61 if ($previous instanceof AbstractBlock) { 119 if ($previous instanceof AbstractBlock && $previous->endsWithBlankLine()) { 130 if ($node instanceof AbstractBlock && $node->endsWithBlankLine()) {
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Node/ |
H A D | Attributes.php | 17 use League\CommonMark\Block\Element\AbstractBlock; alias 20 final class Attributes extends AbstractBlock 41 public function canContain(AbstractBlock $block): bool
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Util/ |
H A D | AttributesHelper.php | 17 use League\CommonMark\Block\Element\AbstractBlock; alias 98 * @param AbstractBlock|AbstractInline|array<string, mixed> $attributes1 99 * @param AbstractBlock|AbstractInline|array<string, mixed> $attributes2 107 if ($arg instanceof AbstractBlock || $arg instanceof AbstractInline) {
|
/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/vendor/league/commonmark/src/Extension/TableOfContents/ |
H A D | TableOfContentsPlaceholderRenderer.php | 14 use League\CommonMark\Block\Element\AbstractBlock; alias 20 …public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTight…
|
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Block/ |
H A D | ThematicBreakRenderer.php | 18 use League\CommonMark\Block\Element\AbstractBlock; alias 32 …public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTight…
|
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…
|