Home
last modified time | relevance | path

Searched refs:AbstractBlock (Results 1 – 25 of 66) sorted by relevance

123

/plugin/commonmark/vendor/league/commonmark/src/
H A DContextInterface.php17 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 DContext.php17 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 DUnmatchedBlockCloser.php17 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 DElementRendererInterface.php17 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 DHtmlRenderer.php17 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 DTableRow.php18 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 DListBlock.php23 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 DThematicBreak.php19 class ThematicBreak extends AbstractBlock
21 public function canContain(AbstractBlock $block): bool
H A DBlockQuote.php22 class BlockQuote extends AbstractBlock
24 public function canContain(AbstractBlock $block): bool
H A DDocument.php24 class Document extends AbstractBlock
44 public function canContain(AbstractBlock $block): bool
H A DAbstractBlock.php26 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 DTableOfContentsPlaceholder.php14 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 DBlockRendererInterface.php17 use League\CommonMark\Block\Element\AbstractBlock; alias
24 * @param AbstractBlock $block
30 …public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTight…
H A DDocumentRenderer.php17 use League\CommonMark\Block\Element\AbstractBlock; alias
30 …public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTight…
H A DThematicBreakRenderer.php17 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 DFootnoteContainer.php17 use League\CommonMark\Block\Element\AbstractBlock; alias
23 final class FootnoteContainer extends AbstractBlock
25 public function canContain(AbstractBlock $block): bool
H A DFootnote.php17 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 DAttributesListener.php17 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 DAttributes.php17 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 DAttributesHelper.php17 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 DDWRenderer.php18 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 DTableOfContentsPlaceholderRenderer.php14 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 DThematicBreakRenderer.php18 use League\CommonMark\Block\Element\AbstractBlock; alias
32 …public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTight…
H A DTableRenderer.php21 use League\CommonMark\Block\Element\AbstractBlock; alias
28 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…
H A DTableRowRenderer.php21 use League\CommonMark\Block\Element\AbstractBlock; alias
28 …public function render(AbstractBlock $block, ElementRendererInterface $DWRenderer, bool $inTightLi…

123