Home
last modified time | relevance | path

Searched refs:match (Results 401 – 425 of 2354) sorted by relevance

1...<<11121314151617181920>>...95

/plugin/floatdiv/syntax/
H A Dfloathead.php41 public function handle($match, $state, $pos, &$handler){ argument
42 preg_match('/^~(\$+) (.+)? (\$+)~/',$match,$matches);
48 list($size,$match) = $data;
51 $renderer->_xmlEntities($match)."</div>";
/plugin/fkstimer/
H A Dsyntax.php25 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
29 $match = substr($match, 8, -2);
30 $dateString = date('Y-m-d\TH:i:s', strtotime($match));
/plugin/codemirror/dist/modes/
H A Drpm.min.js.map1match","next","defineMIME","arch","preamble","section","control_flow_complex","control_flow_simple…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowCxV3FulfillIntentRequest.php32 public function setMatch(GoogleCloudDialogflowCxV3Match $match) argument
34 $this->match = $match;
41 return $this->match;
/plugin/dirtylittlehelper/mermaid/editor/src/components/
H A DView.svelte10 if (text.match(/^\s*sequenceDiagram/)) {
14 if (text.match(/^\s*gantt/)) {
18 if (text.match(/^\s*classDiagram/)) {
22 if (text.match(/^\s*stateDiagram/)) {
26 if (text.match(/^\s*gitGraph/)) {
29 if (text.match(/^\s*flowchart/)) {
33 if (text.match(/^\s*info/)) {
36 if (text.match(/^\s*pie/)) {
/plugin/webcomponent/syntax/
H A Dcollapse.php98 * @param string $match
104 function handle($match, $state, $pos, Doku_Handler $handler) argument
112 $match = utf8_substr($match, strlen(self::getElementName()) + 1, -1);
113 $parameters = webcomponent::parseMatch($match);
H A Dbrand.php43 function handle($match, $state, $pos, Doku_Handler $handler) { argument
48 $match = utf8_substr($match, strlen($this->getPluginComponent()) + 1, -1);
49 $parameters = webcomponent::parseMatch($match);
53 return array ($state, $match);
H A Dnavbar.php98 * @param string $match
104 function handle($match, $state, $pos, Doku_Handler $handler) argument
112 $match = utf8_substr($match, strlen(self::getElementName()) + 1, -1);
113 $parameters = webcomponent::parseMatch($match);
/plugin/svgpureinsert/
H A Dsyntax.php46 * @param string $match
52 function handle($match, $state, $pos, Doku_Handler $handler) { argument
63 $match = substr($match, 2, -2);
64 list($id, $title) = explode('|', $match, 2);
/plugin/authorlist/
H A Dsyntax.php73 * @return Integer The current lexer state for the match.
75 function handle($match, $state, $pos, Doku_Handler $handler){ argument
76 $match = strtolower(substr($match,10,-2)); //strip ~~AUTHORS: from start and ~~ from end
77 $options = explode('&',$match);
/plugin/latexit/syntax/
H A Dbase.php64 * @param string $match The match of the syntax
70 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
73 … if (preg_match('/\\\cite(\[([a-zA-Z0-9 \.,\-:]*)\])?\{([a-zA-Z0-9\-:]*?)\}/', $match, $matches)) {
78 elseif (preg_match('#~~RECURSIVE~~#', $match)) {
79 $tildas = explode('RECURSIVE', $match);
/plugin/changemarks/
H A Dhighlighted.php38 function handle($match, $state, $pos, Doku_Handler $handler) { argument
44 $match = substr($match, 2, -1);
45 return array($state, $match);
49 return array($state, $match);
/plugin/bookcreator/syntax/
H A Dexportsaved.php40 * @param string $match The text matched by the patterns
41 * @param int $state The lexer state for the match
46 public function handle($match, $state, $pos, Doku_Handler $handler) argument
48 $match = substr($match, 2, -2); // strip markup
49 [$type, $savedSelectionPage] = array_pad(explode(':', $match, 2), 2, '');
/plugin/page4release/
H A Dsyntax.php36 function handle($match, $state, $pos, &$handler) { argument
37 if (substr($match,2,3) == 'for')
38 return trim(substr($match,6,-2));
39 elseif (substr($match,2,4) == 'pour')
40 return trim(substr($match,6,-2));
/plugin/folded/syntax/
H A Ddiv.php26 * Handle the match
28 function handle($match, $state, $pos, Doku_Handler $handler){ argument
30 $match = trim(substr($match,4,-1)); // strip markup
32 $handler->addCall('cdata',array($match), $pos);
35 return array($state, $match);
/plugin/gallery/
H A Dsyntax.php
/plugin/command/syntax/
H A Dblock.php70 function parseCommandSyntax($match) argument
72 $parenPos = strpos($match, '(');
73 $callString = substr($match, 1, $parenPos - 1);
75 $content = substr($match, $parenPos + 1, -2);
/plugin/wavedrom/
H A Dsyntax.php45 function handle($match, $state, $pos, Doku_Handler $handler){ argument
51 return array($state, $match);
66 list($state, $match) = $indata;
74 $renderer->doc .= $match;
/plugin/alphaindex/
H A Dsyntax.php49 function handle($match, $state, $pos, Doku_Handler $handler){ argument
52 $match = substr($match, 13, -2);
55 $match = preg_split('/\|/u', $match, 2);
58 $ns_opt = preg_split('/\#/u', $match[0], 2);
78 $match = explode(" ", $match[1]);
81 $nons = in_array('nons', $match);
84 $incol = in_array('incol', $match);
/plugin/watchcycle/
H A Dsyntax.php45 * @param string $match The match of the syntax
52 public function handle($match, $state, $pos, Doku_Handler $handler) argument
61 if (!preg_match('/~~WATCHCYCLE:[^:]+:\d+~~/', $match)) {
66 $match = substr($match, strlen('~~WATCHCYCLE:'), strlen($match) - 2);
68 list($maintainer, $cycle) = array_map('trim', explode(':', $match));
/plugin/dokuwiki-webcomics/
H A Dsyntax.php86 function handle ($match, $state, $pos, &$handler) argument
88 $match = str_replace(array("[", "]"), array("", ""), $match);
89 return array($match, $state, $pos);
/plugin/randompage2/
H A Dsyntax.php26 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
31 case DOKU_LEXER_UNMATCHED : return array($state, $match);
45 list($state, $match) = $data;
52 $renderer->doc .= $renderer->_xmlEntities($match);
/plugin/tabinclude/syntax/
H A Dembed.php22 function handle($match, $state, $pos, Doku_Handler $handler){ argument
23 $match = substr($match,10,-2); // strip markup
24 return $this->helper->getTabPages($match);
H A Dinline.php23 function handle($match, $state, $pos, Doku_Handler $handler){ argument
24 $match = substr($match,12,-2); // strip markup
25 return $this->helper->getTabPages($match); // inline mode
H A Dlink.php22 function handle($match, $state, $pos, Doku_Handler $handler){ argument
23 $match = substr($match,9,-2); // strip markup
24 return $this->helper->getTabPages($match);

1...<<11121314151617181920>>...95