Home
last modified time | relevance | path

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

/plugin/extlist/
H A Dsyntax.php219 protected function _writeCall($tag, $attr, $state, $pos, $match, $handler) function in syntax_plugin_extlist
251 $this->_writeCall($tag,$attr,DOKU_LEXER_ENTER, $pos,$match,$handler);
263 $this->_writeCall($tag,'',DOKU_LEXER_EXIT, $pos,$match,$handler);
287 $this->_writeCall($tag,$attr,DOKU_LEXER_ENTER, $pos,$match,$handler);
296 $this->_writeCall($tag,'',DOKU_LEXER_EXIT, $pos,$match,$handler);
318 $this->_writeCall($tag,$attr,DOKU_LEXER_ENTER, $pos,$match,$handler);
340 $this->_writeCall($tag,'',DOKU_LEXER_EXIT, $pos,$match,$handler);
348 $this->_writeCall('p','',DOKU_LEXER_ENTER, $pos,$match,$handler);
356 $this->_writeCall('p','',DOKU_LEXER_EXIT, $pos,$match,$handler);
390 // cdata --- use base() as _writeCall() i
[all...]
/plugin/definitionlist/
H A Dsyntax.php87 … $this->_writeCall('dl',DOKU_LEXER_ENTER,$pos,$match,$handler); // open a new DL
88 … $this->_writeCall('dt',DOKU_LEXER_ENTER,$pos,$match,$handler); // always start with a DT
96 …$this->_writeCall($oldtag,DOKU_LEXER_EXIT,$pos,$match,$handler); // close the current definition …
97 … $this->_writeCall($newtag,DOKU_LEXER_ENTER,$pos,$match,$handler); // ...and open the new dl item
103 $this->_writeCall($tag,DOKU_LEXER_EXIT,$pos,$match,$handler);
107 $this->_writeCall('dl',DOKU_LEXER_EXIT,$pos,$match,$handler);
126 protected function _writeCall($tag, $state, $pos, $match, &$handler) { function in syntax_plugin_definitionlist