Home
last modified time | relevance | path

Searched refs:listData (Results 1 – 7 of 7) sorted by path

/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Block/
H A DListBlockRenderer.php37 $listData = $node->getListData();
38 $tag = $listData->type === ListBlock::TYPE_BULLET ? "* " : "- ";
42 if ($listData->start !== null && $listData->start !== 1) {
43 $attrs['start'] = (string) $listData->start;
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG-0.x.md
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/
H A DListBlock.php
H A DListItem.php
/plugin/commonmark/vendor/league/commonmark/src/Block/Renderer/
H A DListBlockRenderer.php
/plugin/commonmark/vendor/league/commonmark/src/Extension/TableOfContents/
H A DTableOfContentsGenerator.php119 $listData = new ListData();
122 $listData->type = ListBlock::TYPE_BULLET;
124 $listData->type = ListBlock::TYPE_ORDERED;
129 $toc = new TableOfContents($listData);
/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfckdomtools.js751 var listData = this.ArrayToList( listArray, null, currentIndex ) ;
752 currentListItem.appendChild( listData.listNode ) ;
753 currentIndex = listData.nextIndex ;