Home
last modified time | relevance | path

Searched refs:match (Results 301 – 325 of 2354) sorted by relevance

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

/plugin/dokutexit/
H A Dsyntax.php73 function handle($match, $state, $pos, &$handler){ argument
78 $matches = preg_split('/>/u',$match,2);
86 return array($state,'',$match,$pos);
94 list($state, $substate, $match, $pos) = $data;
111 if ($this->_texit->add_data($substate, $match)) {
132 $renderer->put($match);
/plugin/ckgedit/syntax/
H A Dfont.php35 function handle($match, $state, $pos, Doku_Handler $handler){ argument
40 list($size, $face) = preg_split("/\//u", substr($match, 6, -1), 2);
54 case DOKU_LEXER_UNMATCHED : return array($state, $match);
65 list($state, $match) = $data;
69 list($style, $face) = $match;
88 case DOKU_LEXER_UNMATCHED : $renderer->doc .= $renderer->_xmlEntities($match); break;
/plugin/htmldetailstag/syntax/
H A Dsummary.php66 * @param string $match The match of the syntax
73 public function handle($match, $state, $pos, Doku_Handler $handler) argument
75 $data = array($match, $state);
94 list($match, $state) = $data;
100 $renderer->doc .= $renderer->_xmlEntities($match);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DSpanFirst.php17 * @param AbstractQuery|array $match
19 public function __construct($match = null, ?int $end = null) argument
21 if (null !== $match) {
22 $this->setMatch($match);
25 if (null !== $match) {
41 return $this->_setQuery('match', $args);
45 * Set the maximum end position for the match query.
/plugin/numberedheadings/
H A Dsyntax.php71 * Handle the match
73 public function handle($match, $state, $pos, Doku_Handler $handler)
76 $match = trim($match);
77 if ($match[0] !== '=') {
79 $level = (int) substr($match, -3, 1);
84 $level = 7 - min(strspn($match, '='), 6);
90 $text = trim(trim($match), '='); // drop heading markup
142 $handler->addPluginCall(substr(get_class($this), 14), $data, $state, $pos, $match);
66 handle($match, $state, $pos, Doku_Handler $handler) global() argument
/plugin/socialshareprivacy2/
H A Dsyntax.php30 public function handle($match, $state, $pos, &$handler){ argument
31 $match = substr($match, 2, -2);
32 $pos = strrpos($match, ">");
38 list($type, $options) = split('>', $match, 2);
/plugin/embedover/
H A Dsyntax.php81 case DOKU_LEXER_UNMATCHED : return array($state, $match);
91 list($state, $match) = $data;
94 if ($match == '{[embedover_div]}')
100 $renderer->doc .= $match;
104 case DOKU_LEXER_UNMATCHED : $renderer->doc .= $renderer->_xmlEntities($match); break;
/plugin/mark2memorize/
H A Dsyntax.php60 * @param string $match The match of the syntax
67 public function handle($match, $state, $pos, Doku_Handler $handler) argument
71 case DOKU_LEXER_UNMATCHED : return array($state, $match);
89 list($state, $match) = $data;
94 case DOKU_LEXER_UNMATCHED : $renderer->doc .= $renderer->_xmlEntities($match); break;
/plugin/code39/
H A Dsyntax.php62 * @param string $match The match of the syntax
69 public function handle($match, $state, $pos, Doku_Handler $handler) argument
73 case DOKU_LEXER_UNMATCHED : return array($state, $match);
92 list($state, $match) = $data;
97 case DOKU_LEXER_UNMATCHED : $renderer->doc .= $renderer->_xmlEntities($match); break;
/plugin/odtsupport/
H A Dsyntax.php66 * @param string $match The match of the syntax
73 public function handle($match, $state, $pos, Doku_Handler $handler) argument
75 if (preg_match('/{{([a-zA-Z0-9]+)/', $match, $matches) !== 1) {
88 $string = substr($match, 7, -2); //strip markup
92 $string = substr($match, 8, -2); //strip markup
102 $params = substr($match, strlen($this->serverurl)+3, -2); //strip markup
109 $string = substr($match, strlen($this->odt_field_pagehash4)+3, -2); //strip markup
113 $string = substr($match, strlen($this->odt_field_pagehash)+3, -2); //strip markup
116 $string = substr($match, strlen($this->odt_field_metadata)+3, -2); //strip markup
/plugin/blogtng/syntax/
H A Dblog.php85 * @param string $match The text matched by the patterns
91 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
92 $match = substr(trim($match), 5, -7); // strip '<blog' and '</blog>'
93 list($type,$conf) = explode('>',$match,2);
221 case (preg_match('/^\+(\d+)$/', $opt, $match)):
222 $this->config['order'] = $match[1];
224 case (preg_match('/^tpl(\w+)$/', $opt, $match)):
225 $this->config['tpl'] = $match[1];
/plugin/dirtylittlehelper/syntax/
H A Dtablewiki.php71 * @param string $match The match of the syntax
78 public function handle($match, $state, $pos, Doku_Handler $handler) argument
81 if( substr($match,0,3) =='<dl'){
82 return array($state, 'BEGIN',$match);
84 }elseif( substr($match,0,3) =='</d'){
85 return array($state, '/END',$match);
/plugin/revealjs/syntax/
H A Dfragment.php45 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
48 list($type, $param1, $param2) = preg_split("/\s+/", substr($match, 1, -1), 3);
59 case DOKU_LEXER_UNMATCHED : return array($state, $match);
79 list($state, $match) = $data;
83 list($style, $index) = $match;
89 $renderer->doc .= $renderer->_xmlEntities($match);
/plugin/yourip/
H A Dsyntax.php38 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
40 $match = substr($match, 9, -2);
42 if ($match == 'BOX')
44 elseif ($match == 'LINE')
46 elseif ($match == 'IPONLY')
/plugin/codemirror/dist/modes/
H A Dsas.min.js1match(/^[0-9]+([eE][\-+]?[0-9]+)?/);else if(g==="0")e.match(/^[xX][0-9a-fA-F]+/)||e.match(/^0[0-7]…
H A Djulia.min.js.map1match","tokenize","tokenComment","leavingExpr","sol","eatSpace","ch","peek","skipToEnd","push","po…
H A Dxquery.min.js1match("!--",true))return b(c,h,i);if(c.match("![CDATA",false)){h.tokenize=j;return"tag"}if(c.match
/plugin/listusergroup/
H A Dsyntax.php43 * @param string $match The match of the syntax
50 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
51 list($syntax, $match) = explode('>', substr( strtolower($match), 0, -2), 2); // strip markup
55 $optionParts = explode(';', $match);
/plugin/shorty/
H A Dsyntax.php48 * @param string $match The match of the syntax
54 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
58 $match = substr($match, 8, -2); //strip ~~shorty from start and ~~ from end
59 $service = strtolower(trim($match)); //strip spaces
/plugin/tocselect/
H A Dsyntax.php41 function handle($match, $state, $pos, Doku_Handler $handler) { argument
44 if(preg_match('/curID/', $match)) {
45 $match = 'curID';
47 else $match = 'wiki:id';
49 return array($state,$match);
/plugin/socialshareprivacy/
H A Dsyntax.php37 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
39 $match = substr($match, 2, -2);
40 $pos = strrpos($match, ">");
46 list($type, $options) = split('>', $match, 2);
/plugin/jirainfo/
H A Dsyntax.php24 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
28 $xml = simplexml_load_string(str_replace('>', '/>', $match));
37 case DOKU_LEXER_UNMATCHED : return array($state, $match);
60 list($state, $match) = $data;
68 $renderer->doc .= htmlentities($match);
/plugin/relativens/
H A Dsyntax.php53 $match = preg_replace(array('/^\{\{/','/\}\}$/u'),'',$match, 2, $isMedia);
54 $match = preg_replace(array('/^\[\[/','/\]\]$/u'),'',$match, 2);
57 $linkAndTitle = preg_split('/\|/u',$match,2);
/plugin/webcomponent/_test/
H A Dwebcomponent.test.php17 $match = ' class="nico"';
18 $parameters = webcomponent::parseMatch($match);
26 $match = ' class="" ';
27 $parameters = webcomponent::parseMatch($match);
/plugin/calendoku/syntax/
H A Dshowicalendar.php28 function handle($match, $state, $pos, &$handler) { argument
43 $handler->_addCall('cdata', array($match), $pos);
51 $handler->_addCall('cdata', array($match), $pos);
64 $handler->_addCall('cdata', array($match), $pos);
69 $object = new CalenDoku_CalendarObject($this, $match);
72 $handler->_addCall('cdata', array($match), $pos);

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