| /dokuwiki/inc/Parsing/ParserMode/ |
| H A D | Table.php | 60 $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 D | GfmTable.php | 129 $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 D | GfmEmphasisStrong.php | 70 $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 D | Footnote.php | 66 $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 D | Header.php | 43 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 D | Listblock.php | 56 $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 D | Preformatted.php | 81 $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 D | GfmHeader.php | 72 $handler->addCall('section_close', [], $pos); 74 $handler->addCall('header', [$title, $level, $pos], $pos); 75 $handler->addCall('section_open', [$level], $pos);
|
| H A D | GfmBacktickSingle.php | 98 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 D | AbstractFormatting.php | 96 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 D | GfmListblock.php | 124 $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 D | Externallink.php | 102 $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 D | Nocache.php | 24 $handler->addCall('nocache', [], $pos);
|
| H A D | Linebreak.php | 24 $handler->addCall('linebreak', [], $pos);
|
| H A D | Notoc.php | 24 $handler->addCall('notoc', [], $pos);
|
| H A D | GfmLinebreak.php | 54 $handler->addCall('linebreak', [], $pos);
|
| H A D | GfmQuote.php | 113 $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 D | Camelcaselink.php | 28 $handler->addCall('camelcaselink', [$match], $pos);
|
| H A D | Multiplyentity.php | 33 $handler->addCall('multiplyentity', [$matches[0][0], $matches[0][1]], $pos);
|
| H A D | Eol.php | 29 $handler->addCall('eol', [], $pos);
|
| H A D | GfmHr.php | 46 $handler->addCall('hr', [], $pos);
|
| H A D | Windowssharelink.php | 36 $handler->addCall('windowssharelink', [$match, null], $pos);
|
| H A D | GfmHtmlEntity.php | 56 $handler->addCall('cdata', [HtmlEntity::decodeOne($match)], $pos);
|
| /dokuwiki/inc/Parsing/Handler/ |
| H A D | Nest.php | 53 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 D | ClientMulticall.php | 20 public function addCall() function in IXR\\Client\\ClientMulticall
|