Home
last modified time | relevance | path

Searched refs:delimiters (Results 1 – 25 of 93) sorted by relevance

1234

/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DTokenizer.php91 …* @param string $delimiters Optionally, pass initial opening and closing delimiters (default: null)
95 public function scan($text, $delimiters = null) argument
110 if ($delimiters = trim($delimiters)) {
111 $this->setDelimiters($delimiters);
298 * @param string $delimiters
300 private function setDelimiters($delimiters) argument
302 if (!preg_match('/^\s*(\S+)\s+(\S+)\s*$/', $delimiters, $matches)) {
303 …ow new Mustache_Exception_InvalidArgumentException(sprintf('Invalid delimiters: %s', $delimiters));
H A DEngine.php57 private $delimiters; variable in Mustache_Engine
208 $this->delimiters = $options['delimiters'];
628 'delimiters' => $this->delimiters ? $this->delimiters : '{{ }}',
766 return $this->getTokenizer()->scan($source, $this->delimiters);
/plugin/diagramsnet/lib/math/extensions/
H A Dasciimath2jax.js19delimiters:[["`","`"]],skipTags:["script","noscript","style","textarea","pre","code","annotation",… property in MathJax.Extension.asciimath2jax.config
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DTokenizer.php89 * @param string $delimiters Optional, pass opening and closing delimiters
93 public function scan($text, $delimiters = null) argument
101 if ($delimiters !== null && $delimiters = trim($delimiters)) {
102 list($otag, $ctag) = explode(' ', $delimiters);
315 * Change the current Mustache delimiters. Set new `otag` and `ctag` values.
/plugin/csv/_test/
H A DCSVTest.php14 private $delimiters = array( variable in dokuwiki\\plugin\\csv\\test\\CSVTest
47 $delim = $this->delimiters[$delim];
/plugin/katex/
H A Dscript.js14 delimiters: JSINFO['plugins']['katex']['options']['delimiters'],
/plugin/katex/_assets/contrib/
H A Dauto-render.min.js1delimiters);if(1===n.length&&"text"===n[0].type)return null;for(var i=document.createDocumentFragm…
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DInline.php266 …public static function parseScalar(string $scalar, int $flags = 0, array $delimiters = null, int &… argument
272 if (null !== $delimiters) {
275 …(sprintf('Unexpected end of line, expected one of "%s".', implode('', $delimiters)), self::$parsed…
277 if (!\in_array($tmp[0], $delimiters)) {
283 if (!$delimiters) {
291 …} elseif (Parser::preg_match('/^(.*?)('.implode('|', $delimiters).')/', substr($scalar, $i), $matc…
/plugin/codemirror/dist/modes/
H A Dpython.min.js1 …es.length-1]}a.defineMode("python",function(g,h){var i="error";var j=h.delimiters||h.singleDelimit…
H A Dcoffeescript.min.js.map1delimiters","identifiers","atProp","wordOperators","indentKeywords","commonKeywords","keywords","c…
H A Djulia.min.js.map1delimiters","identifiers","chars","openersList","closersList","keywordsList","builtinsList","regis…
H A Djulia.min.js1 …","\\u2288","\\u228A","\\u22C5","\\b(in|isa)\\b(?!.?\\()"],"");var j=c.delimiters||/^[;,()[\]{}]/;…
/plugin/combo/vendor/symfony/yaml/
H A DInline.php268 public static function parseScalar(string $scalar, int $flags = 0, array $delimiters = null, int &$i = 0, bool $evaluate = true, array &$references = [], bool &$isQuoted = null) argument
275 if (null !== $delimiters) {
278 throw new ParseException(sprintf('Unexpected end of line, expected one of "%s".', implode('', $delimiters)), self::$parsedLineNumber + 1, $scalar, self::$parsedFilename);
280 if (!\in_array($tmp[0], $delimiters)) {
288 if (!$delimiters) {
296 } elseif (Parser::preg_match('/^(.*?)('.implode('|', $delimiters).')/', substr($scalar, $i), $match)) {
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D53.53.js1 …,"|=","||","_","?","#"],escapes:/\\([nrt0\"''\\]|x\h{2}|u\{\h{1,6}\})/,delimiters:/[,]/,symbols:/[… property in AnonymousFunctionf44b204b0100.s
H A D53.53.js.map1delimiters: /[,]/,\n symbols: /[\\#\\!\\%\\&\\*\\+\\-\\.\\/\\:\\;\\<\\=\\>\\@\\^\\|_\\?]+/,\n …
H A D54.54.js.map1 …d+/, 'number.float'],\n [/\\d+/, 'number'],\n // delimiters and operators\n …
H A D11.11.js.map1 …// whitespace\n { include: '@whitespace' },\n // delimiters and operators\n …
/plugin/wysiwyg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.cfm36 <cfloop list="#submitted_text#" index="field" delimiters=",">
40 <cfloop list="#URLDecode(field)#" index="line" delimiters="#CRLF#">
73 <cfloop list="#food#" index="aspell_line" delimiters="#CRLF#">
/plugin/fckg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.cfm36 <cfloop list="#submitted_text#" index="field" delimiters=",">
42 <cfloop list="#field#" index="line" delimiters="#CRLF#">
75 <cfloop list="#food#" index="aspell_line" delimiters="#CRLF#">
/plugin/diagramsnet/lib/math/config/
H A Ddefault.js383 delimiters: [
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Drecipes.rst158 Twig allows some syntax customization for the block delimiters. It's not
162 To change the block delimiters, you need to create your own lexer object::
536 practice as both AngularJS and Twig use the same delimiters in their syntax:
543 * Escaping the AngularJS delimiters by wrapping AngularJS sections with the
547 * Changing the delimiters of one of the template engines (depending on which
560 * For Twig, change the delimiters via the ``tag_variable`` Lexer option:
H A Dcoding_standards.rst52 * Do not put any spaces before and after string delimiters:
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG.md376 - `mentions/*/regex` has been renamed to `mentions/*/pattern` and requires partial regular expressions (without delimiters or flags)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DTextStructureNamespace.asciidoc40 $params['should_trim_fields'] = (boolean) Optional parameter to specify whether the values between delimiters in a delimited file should have whitespace trimmed from them
/plugin/templater/
H A DCHANGELOG.md65 * Changed the substitution delimiters from `{ }` to `@`.

1234