Home
last modified time | relevance | path

Searched refs:addCall (Results 1 – 25 of 44) sorted by relevance

12

/dokuwiki/inc/Parsing/ParserMode/
H A DTable.php60 $handler->addCall('table_start', [$pos + 1], $pos);
62 $handler->addCall('tableheader', [], $pos);
64 $handler->addCall('tablecell', [], $pos);
69 $handler->addCall('table_end', [$pos], $pos);
77 $handler->addCall('cdata', [$match], $pos);
83 $handler->addCall('cdata', [$match], $pos);
85 $handler->addCall('rowspan', [$match], $pos);
87 $handler->addCall('table_align', [$match], $pos);
89 $handler->addCall('table_align', [$match], $pos);
91 $handler->addCall('table_row', [], $pos);
[all …]
H A DGfmTable.php129 $handler->addCall('gfm_table_start', [$pos + 1], $pos);
130 $handler->addCall('gfm_table_row', [], $pos);
131 $handler->addCall('gfm_table_cell', [], $pos);
137 $handler->addCall('gfm_table_row', [], $pos);
138 $handler->addCall('gfm_table_cell', [], $pos);
141 $handler->addCall('gfm_table_cell', [], $pos);
146 $handler->addCall('cdata', [$match], $pos);
150 $handler->addCall('gfm_table_end', [], $pos);
H A DGfmEmphasisStrong.php70 $handler->addCall('emphasis_open', [], $pos);
71 $handler->addCall('strong_open', [], $pos);
74 $handler->addCall('strong_close', [], $pos);
75 $handler->addCall('emphasis_close', [], $pos);
78 $handler->addCall('cdata', [$match], $pos);
H A DFootnote.php66 $handler->addCall('cdata', [$match], $pos);
72 $handler->addCall('footnote_open', [], $pos);
77 $handler->addCall('cdata', [$match], $pos);
82 $handler->addCall('footnote_close', [], $pos);
89 $handler->addCall('cdata', [$match], $pos);
H A DHeader.php43 if ($handler->getStatus('section')) $handler->addCall('section_close', [], $pos);
45 $handler->addCall('header', [$title, $level, $pos], $pos);
47 $handler->addCall('section_open', [$level], $pos);
H A DListblock.php56 $handler->addCall('list_open', [$match], $pos);
59 $handler->addCall('list_close', [], $pos);
65 $handler->addCall('list_item', [$match], $pos);
68 $handler->addCall('cdata', [$match], $pos);
H A DPreformatted.php81 $handler->addCall('preformatted_start', [], $pos);
84 $handler->addCall('preformatted_end', [], $pos);
90 $handler->addCall('preformatted_newline', [], $pos);
93 $handler->addCall('preformatted_content', [$match], $pos);
H A DGfmHeader.php72 $handler->addCall('section_close', [], $pos);
74 $handler->addCall('header', [$title, $level, $pos], $pos);
75 $handler->addCall('section_open', [$level], $pos);
H A DGfmBacktickSingle.php98 DOKU_LEXER_ENTER => $handler->addCall('monospace_open', [], $pos),
99 DOKU_LEXER_EXIT => $handler->addCall('monospace_close', [], $pos),
100 DOKU_LEXER_UNMATCHED => $handler->addCall(
H A DAbstractFormatting.php96 DOKU_LEXER_ENTER => $handler->addCall($name . '_open', [], $pos),
97 DOKU_LEXER_EXIT => $handler->addCall($name . '_close', [], $pos),
98 DOKU_LEXER_UNMATCHED => $handler->addCall('cdata', [$match], $pos),
H A DGfmListblock.php124 $handler->addCall('cdata', [$match], $pos);
129 $handler->addCall('list_open', [$items[0]['markerMatch']], $pos);
140 $handler->addCall('list_item', [$item['markerMatch']], $itemPos);
158 $handler->addCall($call[0], $call[1], $itemPos + $call[2]);
165 $handler->addCall('list_close', [], $pos + strlen($match));
H A DExternallink.php102 $handler->addCall('cdata', [$match], $pos);
106 $handler->addCall('externallink', [$url, $url], $pos);
126 $handler->addCall('externallink', [$url, $title], $pos);
128 $handler->addCall('cdata', [$trailing], $pos);
H A DNocache.php24 $handler->addCall('nocache', [], $pos);
H A DLinebreak.php24 $handler->addCall('linebreak', [], $pos);
H A DNotoc.php24 $handler->addCall('notoc', [], $pos);
H A DGfmLinebreak.php54 $handler->addCall('linebreak', [], $pos);
H A DGfmQuote.php113 $handler->addCall('quote_open', [], $pos);
117 $handler->addCall('quote_close', [], $pos);
129 $handler->addCall('quote_close', [], $pos + strlen($match));
222 $handler->addCall($call[0], $call[1], $segmentStart + $call[2]);
H A DCamelcaselink.php28 $handler->addCall('camelcaselink', [$match], $pos);
H A DMultiplyentity.php33 $handler->addCall('multiplyentity', [$matches[0][0], $matches[0][1]], $pos);
H A DEol.php29 $handler->addCall('eol', [], $pos);
H A DGfmHr.php46 $handler->addCall('hr', [], $pos);
H A DWindowssharelink.php36 $handler->addCall('windowssharelink', [$match, null], $pos);
H A DGfmHtmlEntity.php56 $handler->addCall('cdata', [HtmlEntity::decodeOne($match)], $pos);
/dokuwiki/inc/Parsing/Handler/
H A DNest.php53 foreach ($unmerged_calls as $call) $this->addCall($call);
64 protected function addCall($call) function in dokuwiki\\Parsing\\Handler\\Nest
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClientMulticall.php20 public function addCall() function in IXR\\Client\\ClientMulticall

12