Home
last modified time | relevance | path

Searched refs:headingInfo (Results 1 – 2 of 2) sorted by relevance

/plugin/commonmark/
H A Daction.php25 public $headingInfo = []; variable in action_plugin_commonmark
55 $keys = array_keys($this->headingInfo);
65 $lineStart = $this->headingInfo[$hid]['startline'] - 1;
76 $endlevel = $this->headingInfo[$keys[$index+1]]['level'];
77 … $lineEnd = $this->headingInfo[$keys[$index+1]]['startline'] - 1; // go one line up
120 $this->headingInfo = $this->CleanHeadingInfo($result['heading']);
142 foreach($this->headingInfo as &$element) {
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/
H A DCommonmark.php17 $headingInfo = [];
79 $headingInfo[$headingName] = array(
88 return array('text'=>$renderResult, 'heading'=>$headingInfo);
90 return array('text'=>$tagStr."\n\n".$renderResult, 'heading'=>$headingInfo);
93 return array('text'=>$renderResult."\n\n".$tagStr, 'heading'=>$headingInfo);