Home
last modified time | relevance | path

Searched refs:TableSection (Results 1 – 6 of 6) sorted by last modified time

/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/
H A DTableExtension.php27 use League\CommonMark\Extension\Table\TableSection; alias
41 ->addRenderer(TableSection::class, new TableSectionRenderer())
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Block/
H A DTableSectionRenderer.php24 use League\CommonMark\Extension\Table\TableSection; alias
30 TableSection::assertInstanceOf($node);
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/
H A DTableSection.php20 final class TableSection extends AbstractBlock
24 final class TableSection extends AbstractStringContainerBlock implements InlineContainerInterface global() class
H A DTableSectionRenderer.php27 * @param TableSection $node
35 TableSection::assertInstanceOf($node);
45 $tag = $node->getType() === TableSection::TYPE_HEAD ? 'thead' : 'tbody';
56 * @param TableSection $node
64 TableSection::assertInstanceOf($node);
H A DTable.php
H A DTableExtension.php58 ->addRenderer(TableSection::class, new TableSectionRenderer())