| /plugin/syntaxhighlighter3/sxh3/src/js/ |
| D | shBrushPerl.js | 51 { regex: /\bq[qwxr]?\([\s\S]*?\)/g, css: 'string' }, // quote-like operators () 52 { regex: /\bq[qwxr]?\{[\s\S]*?\}/g, css: 'string' }, // quote-like operators {} 53 { regex: /\bq[qwxr]?\[[\s\S]*?\]/g, css: 'string' }, // quote-like operators [] 54 { regex: /\bq[qwxr]?(<|<)[\s\S]*?(>|>)/g, css: 'string' }, // quote-like operators <> 55 { regex: /\bq[qwxr]?([^\w({<[])[\s\S]*?\1/g, css: 'string' }, // quote-like operators non-paired
|
| /plugin/formatplus/ |
| D | script.js | 67 var bq = bqelems[i]; 68 var bq_cite = bq.getAttribute('title'); 69 if (bq.className == 'citation' && bq_cite) { 73 bq.appendChild(bq_after);
|
| /plugin/syntaxhighlighter3/sxh3/pkg/scripts/ |
| D | shBrushPerl.js | 67 { regex: /\bq[qwxr]?\([\s\S]*?\)/g, css: 'string' }, // quote-like operators () 68 { regex: /\bq[qwxr]?\{[\s\S]*?\}/g, css: 'string' }, // quote-like operators {} 69 { regex: /\bq[qwxr]?\[[\s\S]*?\]/g, css: 'string' }, // quote-like operators [] 70 { regex: /\bq[qwxr]?(<|<)[\s\S]*?(>|>)/g, css: 'string' }, // quote-like operators <> 71 { regex: /\bq[qwxr]?([^\w({<[])[\s\S]*?\1/g, css: 'string' }, // quote-like operators non-paired
|
| /plugin/formatplus2/ |
| D | script.js | 95 var bq = bqelems[i]; 96 var bq_cite = bq.getAttribute('title'); 97 if (bq.className == 'citation' && bq_cite) { 101 bq.appendChild(bq_after);
|
| /plugin/diagramsnet/lib/templates/cloud/gcp/ |
| D | gcp_websites_content_hosting.xml | 1 …h2J8+BgI6ljmrH65Dur1bXC9unfGRydPJqN8dP6FzzN8pEbp8dHiu/DRYoqMF4rt/XDdvL1/t2/+BQ==</diagram></mxfile>
|
| /plugin/codemirror/dist/modes/ |
| D | textile.min.js | 1 …bq:"bq",definitionList:/- .*?:=+/,definitionListEnd:/.*=:\s*$/,div:"div",drawTable:/\|.*\|/,foot:/… property
|
| D | textile.min.js.map | 1 …bq","definitionListEnd","drawTable","foot","list","para","tableCellAttributes","tableText","text",…
|
| /plugin/diagramsnet/lib/templates/cloud/aws/ |
| D | aws_5.xml | 1 …Y0OCQH45RNvFr060JuGeyMdfbc1fROpqD5F0Fwc57Mt2dTT9if3i+WFCxa7t1bl34omvaCDmYi3/BQ==</diagram></mxfile>
|
| D | aws_2.xml | 1 …mzNu2zrhc+jo/6v1CbmnCOUmQdBKxtTPDcN5HIq/0UB+VRDDJ7nwm+72QyAjsILPDht3jpZGu+3Bq/9lYaISf7b0lMfaVCfsL2…
|
| /plugin/letsencrypt/ |
| D | country-codes.csv | 41 Caribbean Netherlands,BQ
|
| /plugin/textile2/ |
| D | classTextile.php | 74 Blockquote: bq. 75 Example: bq. Block quotation... -> <blockquote>Block quotation...</blockquote> 77 Blockquote with citation: bq.:http://citation.url 78 Example: bq.:http://textism.com/ Text... 252 $this->btag = array('bq', 'bc', 'notextile', 'pre', 'h[1-6]', 'fn\d+', 'p'); 603 if ($tag == "bq") { 1129 $this->btag = array('bq', 'p');
|
| /plugin/statistics/vendor/matomo/device-detector/regexes/device/ |
| D | mobiles.yml | 2752 - regex: '5085[BQ]' 5659 # bq OR BQ 5660 bq: 5661 …regex: 'Aquaris|bq [^/;]+ Build|BQS[-_][0-9]{4}|(?:BQ(?:ru)?[_ -][0-9]{3,4})|BQ_\d{2}FSF?|BQ5059|B… 5664 - regex: 'BQ(?:ru)?-(?:5209L|5044)(?:[);/ ]|$)' 5666 - regex: 'BQ(?:ru)?-(?:6035L)(?:[);/ ]|$)' 5668 - regex: 'BQ(?:ru)?-(?:5535L)(?:[);/ ]|$)' 5670 - regex: 'BQ(S|ru)?-6353L' 5672 - regex: 'BQ(S|ru)?-(?:5070|6040L)(?:[);/ ]|$)' 5674 - regex: 'BQ(S|ru)?-(?:6424L)(?:[);/ ]|$)' [all …]
|
| /plugin/markdownextra/lib/meltdown/js/lib/ |
| D | js-markdown-extra.js | 1299 ), function(match, bq) { argument 1302 bq = bq.replace(/^[ ]*>[ ]?|^[ ]+$/mg, ''); 1303 bq = self.runBlockGamut(bq); // recurse 1305 bq = bq.replace(/^/mg, " "); 1308 bq = bq.replace(/(\\s*<pre>[\\s\\S]+?<\/pre>)/mg, function(match, pre) { 1314 return "\n" + self.hashBlock("<blockquote>\n" + bq + "\n</blockquote>") + "\n\n";
|
| /plugin/markdownextra/ |
| D | markdown.php | 1336 $bq = $matches[1]; 1338 $bq = preg_replace('/^[ ]*>[ ]?|^[ ]+$/m', '', $bq); 1339 $bq = $this->runBlockGamut($bq); # recurse 1341 $bq = preg_replace('/^/m', " ", $bq); 1344 $bq = preg_replace_callback('{(\s*<pre>.+?</pre>)}sx', 1345 array(&$this, '_doBlockQuotes_callback2'), $bq); 1347 return "\n". $this->hashBlock("<blockquote>\n$bq\n</blockquote>")."\n\n";
|
| /plugin/pgn4web/pgn4web/images/igorsvg/ |
| D | bq.svg | 15 sodipodi:docname="bq.svg">
|
| /plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/ |
| D | specs.md | 202 Markdown's email-style [blockquoting][bq] and multi-paragraph [list items][l] 205 [bq]: #blockquote
|
| /plugin/mizarverifiabledocs/src/ |
| H A D | mizar-parser.js | 14 …i#f#g8o#i#j3v~8lP#f#g!|~8rP#c#d8u~8xP#a#b(}~9OP#]#^9R~9UP#j#k9X~9[P#X#Y(k~9bQ#X#Y9h#c#d:Y~9kQ#b#c,…
|
| /plugin/quickstats/GEOIP/ |
| D | geoip.inc | 336 "BQ" => 253, 594 "BQ",
|
| /plugin/hyphenation/phpHyphenation/patterns/ |
| D | es.php | 9 …2 bio1ú2 bi1u2ní 2bj 2bk b2l 2bl_ 2bm 2b3m2n 2bn 2bp 2b3p2n 2b3p2s 2b3p2t 2bq b2r 2br_ 2bs 2bt 2b3…
|
| /plugin/dw2pdf/vendor/mpdf/qrcode/data/ |
| D | qrv16_3.dat | 321 …p�p�ZHA�Q�bt��l�X�v`�ˁے���bH��t��bdX��n���vZHA�b��tA�rd����~H�X�v˂�����bQ�Z|���d��f`�vXJXQ�r�…
|
| D | qrv21_1.dat | 401 …�ZHA�bXQ�r��˂��ے`�Jl�|��ZdQ|��ZdQtAl��JtA�r���~H�f���nX�vJ`�ے��QJ�����bQJ`�ے�|���d��rt��bdQ�…
|
| D | qrv25_1.dat | 465 …��r��˂p��r��˂p��r��˂p�tA�rd���tA�rd����v���nX�fp��v���bHAXQJ��d��rtAl��t�bQ�Z|���d��n���vp��n���…
|
| /plugin/dw2pdf/vendor/mpdf/mpdf/data/patterns/ |
| D | es.php | 10 …2 bi1u2n\xc3\xad 2bj 2bk b2l 2bl_ 2bm 2b3m2n 2bn 2bp 2b3p2n 2b3p2s 2b3p2t 2bq b2r 2br_ 2bs 2bt 2b3…
|
| /plugin/statistics/vendor/matomo/device-detector/Parser/Device/ |
| D | AbstractDeviceParser.php | 257 'BQ' => 'BenQ', 314 'BX' => 'bq',
|
| /plugin/jquery-syntax/ |
| D | jquery-1.6.min.js | 16 …bq=/^-?\d+(?:px)?$/i,br=/^-?\d/,bs=/^[+\-]=/,bt=/[^+\-\.\de]+/g,bu={position:"absolute",visibility…
|