Home
last modified time | relevance | path

Searched refs:Lexer (Results 351 – 375 of 1044) sorted by last modified time

1...<<11121314151617181920>>...42

/plugin/symbols4odt/
H A Dsyntax.php53 $this->Lexer->addSpecialPattern($substitionString, $mode, substr(get_class($this), 7));
57 $this->Lexer->addSpecialPattern("{{utf8symbol>.+?}}", $mode, substr(get_class($this), 7));
/plugin/abstract/
H A Dsyntax.php20 $this->Lexer->addEntryPattern('<abstract[^>]*>(?=.*</abstract>)',$mode,'plugin_abstract');
24 $this->Lexer->addExitPattern('</abstract>','plugin_abstract');
/plugin/textrotate/
H A Dsyntax.php20 $this->Lexer->addEntryPattern(
28 $this->Lexer->addExitPattern(
/plugin/multiselect/
H A Dsyntax.php62 $this->Lexer->addSpecialPattern("<multiselect[^>]*>",$mode,'plugin_multiselect');
/plugin/geogebrembed/syntax/
H A Dggb.php41 …$this->Lexer->addEntryPattern('< ?ggb(?!ref|caption).*?>(?=.*?</ggb>)', $mode, 'plugin_geogebrembe…
46 $this->Lexer->addExitPattern('</ggb>', 'plugin_geogebrembed_ggb');
/plugin/emphasis/syntax/
H A Dbackground.php22 $this->Lexer->addEntryPattern(';{2,}(?=.*?;{2,})', $mode, 'plugin_emphasis_background');
26 $this->Lexer->addExitPattern(';{2,}', 'plugin_emphasis_background');
H A Dfont.php59 $this->Lexer->addEntryPattern(':{2,}(?=.*?:{2,})', $mode, 'plugin_emphasis_font');
63 $this->Lexer->addExitPattern(':{2,}', 'plugin_emphasis_font');
/plugin/meta/
H A Dsyntax.php30 $this->Lexer->addSpecialPattern('~~META:.*?~~',$mode,'plugin_meta');
/plugin/outliner/
H A Dsyntax.php53 $this->Lexer->addEntryPattern(
61 $this->Lexer->addExitPattern(
/plugin/watchcycle/
H A Dsyntax.php39 $this->Lexer->addSpecialPattern('~~WATCHCYCLE.*?~~', $mode, 'plugin_watchcycle');
/plugin/linkpagechild/
H A Dsyntax.php48 $this->Lexer->addSpecialPattern('\[\[ ?::[^\]]+\]\]', $mode, 'plugin_linkpagechild');
49 $this->Lexer->addSpecialPattern('\{\{ ?::[^\}]+\}\}', $mode, 'plugin_linkpagechild');
/plugin/gchart/
H A Dsyntax.php52 $this->Lexer->addSpecialPattern('<gchart.*?>\n.*?\n</gchart>', $mode, 'plugin_gchart');
/plugin/clipboardutils/
H A Dsyntax.php44 $this->Lexer->addSpecialPattern('<(?:clipb?)\b.*?>.*?</clipb>', $mode, 'plugin_clipboardutils');
/plugin/externalembed/
H A Dsyntax.php55 $this->Lexer->addEntryPattern('{{external_embed>', $mode, 'plugin_externalembed');
59 $this->Lexer->addExitPattern('}}', 'plugin_externalembed');
/plugin/currentlyreading/
H A Dsyntax.php29 $this->Lexer->addSpecialPattern($pattern, $mode, 'plugin_currentlyreading');
/plugin/airtable/
H A Dsyntax.php86 $this->Lexer->addEntryPattern('{{airtable>', $mode, 'plugin_airtable');
90 $this->Lexer->addExitPattern('}}', 'plugin_airtable');
/plugin/survey/syntax/
H A Dsurvey.php51 $this->Lexer->addEntryPattern(
60 $this->Lexer->addExitPattern("</survey>", "plugin_survey_survey");
/plugin/ipmap/
H A Drendertables.php25 $this->Lexer->addEntryPattern('<ipmap.*>.*',$mode,'plugin_ipmap_rendertables');
29 $this->Lexer->addExitPattern('</ipmap>','plugin_ipmap_rendertables');
/plugin/svgembed/
H A Dsyntax.php138 …$this->Lexer->addSpecialPattern("\{\{(?:[^\}\>\<]|(?:\}[^\>\<\}]))+\}\}", $mode, 'plugin_svgembed'…
/plugin/oembed/
H A Dsyntax.php41 $this->Lexer->addSpecialPattern('{{>.+?}}', $mode, 'plugin_oembed');
/plugin/addressbook/
H A Dsyntax.php46 …public function connectTo($mode) {$this->Lexer->addEntryPattern('\[ADDRESSBOOK.*?', $mode, 'plugin…
48 public function postConnect() { $this->Lexer->addExitPattern('\]','plugin_addressbook'); }
/plugin/mediathumbnails/
H A Dsyntax.php49 $this->Lexer->addSpecialPattern("{{thumbnail>.+?}}", $mode, substr(get_class($this), 7));
/plugin/refnotes/
H A Dbibtex.php79 class refnotes_bibtex_lexer extends \dokuwiki\Parsing\Lexer\Lexer {
163 $this->Lexer->addSpecialPattern($pattern, $mode, $this->name);
167 $this->Lexer->addEntryPattern($pattern, $mode, $this->name);
171 $this->Lexer->mapHandler($this->name, $this->handler);
180 $this->Lexer->addExitPattern($pattern, $this->name);
203 $this->Lexer->mapHandler('base', $this->name);
/plugin/refnotes/syntax/
H A Dnotes.php42 $this->Lexer->addSpecialPattern('~~REFNOTES.*?~~', $mode, $this->mode);
43 $this->Lexer->addSpecialPattern('<refnotes[^>]*?\/>', $mode, $this->mode);
44 $this->Lexer->addSpecialPattern('<refnotes(?:[^>]*?[^/>])?>.*?<\/refnotes>', $mode, $this->mode);
H A Dreferences.php102 refnotes_parser_core::getInstance()->registerLexer($this->Lexer);
104 $this->Lexer->addEntryPattern($this->entryPattern, $mode, $this->mode);
108 $this->Lexer->addExitPattern($this->exitPattern, $this->mode);

1...<<11121314151617181920>>...42