Home
last modified time | relevance | path

Searched refs:mark (Results 1 – 25 of 257) sorted by relevance

1234567891011

/plugin/prosemirror/parser/
H A DTextNode.php38 foreach ($this->marks as $mark) {
39 if ($mark->isOpeningMark()) {
42 $mark->setPrevious($previousOpeningMark);
43 $previousOpeningMark->setNext($mark);
45 $openingMarks[] = $mark;
50 foreach ($openingMarks as $mark) {
51 while (!$mark->sort()) {
55 $mark = $openingMarks[0]->getFirst();
56 $doc .= $mark->getOpeningSyntax();
57 while ($mark
[all...]
H A DLinkNode.php120 foreach (array_keys($renderer->getCurrentMarks()) as $mark) {
121 $linkNode->addMark(new \dokuwiki\plugin\prosemirror\schema\Mark($mark));
H A DImageNode.php89 foreach (array_keys($renderer->getCurrentMarks()) as $mark) {
90 $node->addMark(new \dokuwiki\plugin\prosemirror\schema\Mark($mark));
/plugin/googlemaps3/
H A Dsyntax.php228 foreach ($markers as $mark => $marker) {
230 if ($value) $markers[$mark][$option] = ltrim($markers[$mark][$option], $dlm);
231 if (!$value) $markers[$mark][$option] = $this->defaultMarkerOptions[$option];
234 foreach ($markers as $mark => $marker) {
235 $markers[$mark]['markerID'] = ++$this->markerID;
236 if ($markers[$mark]['lat'] == 'address') {
237 $markers[$mark]['lat'] = "'".$markers[$mark]['lat']."'";
238 $markers[$mark]['lng'] = "'".$markers[$mark]['lng']."'";
240 $markers[$mark]['lat'] = is_numeric($marker['lat']) ? floatval($marker['lat']) : 0;
241 $markers[$mark]['lng'] = is_numeric($marker['lng']) ? floatval($marker['lng']) : 0;
[all …]
/plugin/datatables/assets/datatables.net-plugins/features/mark.js/
H A Ddatatables.mark.es6.min.js
H A Ddatatables.mark.min.js
H A Ddatatables.mark.min.css
/plugin/fckg/action/entities/utils/
H A Dentities.txt4 quotation mark
30 inverted exclamation mark
80 angle quotation mark (left)
159 angle quotation mark (right)
179 inverted question mark
547 left-to-right mark
551 right-to-left mark
566 left single quotation mark
571 right single quotation mark
576 single low-9 quotation mark
[all …]
/plugin/ckgdoku/action/entities/utils/
H A Dentities.txt4 quotation mark
30 inverted exclamation mark
80 angle quotation mark (left)
159 angle quotation mark (right)
179 inverted question mark
547 left-to-right mark
551 right-to-left mark
566 left single quotation mark
571 right single quotation mark
576 single low-9 quotation mark
[all …]
/plugin/ckgedit/action/entities/utils/
H A Dentities.txt4 quotation mark
30 inverted exclamation mark
80 angle quotation mark (left)
159 angle quotation mark (right)
179 inverted question mark
547 left-to-right mark
551 right-to-left mark
566 left single quotation mark
571 right single quotation mark
576 single low-9 quotation mark
[all …]
/plugin/data-graph/
H A Dsyntax.php119 $mark = "**";
121 $mark = "";
123 print($mark . "[[?group=". $g . "&aggregate=". $agg ."|". $g . "]]". $mark);
138 $mark = "**";
140 $mark = "";
142 print($mark."[[?group=". $groupBy . "&aggregate=". $g ."|". $g . "]]".$mark);
/plugin/datagraph/
H A Dsyntax.php119 $mark = "**";
121 $mark = "";
123 print($mark . "[[?group=". $g . "&aggregate=". $agg ."|". $g . "]]". $mark);
138 $mark = "**";
140 $mark = "";
142 print($mark."[[?group=". $groupBy . "&aggregate=". $g ."|". $g . "]]".$mark);
/plugin/tooltip/syntax/
H A Dshort.php87 $data['mark']= $match;
102 $mark= $data['mark'];
112 $renderer->doc.= $renderer->_xmlEntities($mark);
133 $renderer->doc.= $mark. ' ';
/plugin/diagramsnet/lib/js/orgchart/
H A DmxOrgChartLayout.js460 edge.mark = 1 << ix; //TODO Support up to 31 segments. In this a limit?
480 fp.mark = edge.mark;
485 up.mark |= fp.mark;
494 tp.mark = edge.mark;
499 up.mark |= tp.mark;
516 ip.mark = edge.mark | e2.mark;
521 up.mark |= ip.mark;
532 ip.mark = edge.mark | e2.mark;
537 up.mark |= ip.mark;
623 if (p.mark & lp.mark)
[all …]
/plugin/deflist/
H A Dsyntax.php406 list($dd, $mark) = each($aData[1][$i]);
408 if (TRUE === $mark) {
421 } else if (0 == $mark) {
426 } else if (0 > $mark) {
432 } else if (0 < $mark) {
/plugin/serverinfos/serverinfos/lib/
H A DInfosServer.class.php251 if ($os == "Darwin") {$mark = $exp[0];}
252 if ($os == "FreeBSD") {$mark = $exp[0];}
259 $mark = $int2[0];
264 $mark = $int[1];
267 if ($os == "WINNT") {$mark = $exp[0];}
269 return $mark;
/plugin/s5reloaded/ui/effects_support/
H A Dunittest.js26 if(this.mark) Element.remove(this.mark);
27 this.mark = document.createElement('div');
28 this.mark.appendChild(document.createTextNode(" "));
29 document.body.appendChild(this.mark);
30 this.mark.style.position = 'absolute';
31 this.mark.style.top = options.pointerY + "px";
32 this.mark.style.left = options.pointerX + "px";
33 this.mark.style.width = "5px";
34 this.mark.style.height = "5px;";
35 this.mark.style.borderTop = "1px solid red;";
[all …]
/plugin/prosemirror/schema/
H A DNode.php54 * @param Mark $mark
56 public function addMark(Mark $mark) argument
58 $this->marks[] = $mark;
/plugin/panoview/
H A Dscript.js110 this.mark = { 'x': 0, 'y': 0 }; class in PanoJS
586 this.x + (coords.x - this.mark.x),
587 this.y + (coords.y - this.mark.y)
666 this.positionTiles({ 'x': (coords.x - this.mark.x), 'y': (coords.y - this.mark.y) });
790 this.mark = coords;
796 'x': (coords.x - this.mark.x),
797 'y': (coords.y - this.mark.y)
802 this.mark = { 'x': 0, 'y': 0 }; class in PanoJS.release
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DIntStream.php11 * For more information on marked ranges, see {@see IntStream::mark()}.
89 * A mark provides a guarantee that {@see IntStream::seek seek()} operations
90 * will be valid over a "marked range" extending from the index where `mark`
95 * The returned mark is an opaque handle (type `int`) which is passed to
97 * the marked range are no longer necessary. When calls to `mark`/`release`
101 * (i.e. a mark is not released, or a mark is released twice, or marks are
110 * The following example shows the use of {@see IntStream::mark()},
111 * {@see IntStream::release(mark)}, {@see IntStream::index()}, and
114 * release the mark
134 public function mark() : int; global() function
[all...]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DDockerfile8 …on="Simple project for testing Guzzle scripts" --author="Márk Sági-Kazár <mark.sagikazar@gmail.com…
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DCore.ColorKeywords.txt
/plugin/nobadbrowser/
H A DChangeLog6 * Added: mark Safari as a bad browser.
/plugin/siteexport/
H A D.travis.yml15 - "wget https://raw.github.com/mark-rushakoff/OpenPhantomScripts/master/phantom-qunit.js -P _test"
/plugin/advanced/lang/en/config/
H A Dacronyms.txt3 DokuWiki can mark abbreviations and acronyms (terminology) automatically. You can hover your mouse …

1234567891011