Home
last modified time | relevance | path

Searched refs:doc (Results 1 – 13 of 13) sorted by last modified time

/dokuwiki/inc/parser/
H A Dxhtml.php37 /** @var string temporary $doc store */
113 $this->doc .= '<!-- EDIT' . hsc(json_encode($data, JSON_THROW_ON_ERROR)) . ' -->';
152 $this->doc .= '<div class="footnotes">' . DOKU_LF;
158 $this->doc .= '<div class="fn">';
159 $this->doc .= '<sup><a href="#fnt__' . $id . '" id="fn__' . $id . '" class="fn_bot">';
160 $this->doc .= $id . ')</a></sup> ' . DOKU_LF;
167 $this->doc .= ', <sup><a href="#fnt__' . ($ref) . '" id="fn__' . ($ref) . '" class="fn_bot">';
168 $this->doc .= ($ref) . ')</a></sup> ' . DOKU_LF;
172 $this->doc .= '<div class="content">' . $footnote . '</div>';
173 $this->doc
[all...]
H A Dxhtmlsummary.php31 $this->doc .= DOKU_LF . '<div>' . DOKU_LF;
37 $this->doc = $this->sum_summary;
38 $this->doc .= DOKU_LF . '</div>' . DOKU_LF;
53 $this->doc .= DOKU_LF . '<h' . $level . '>';
54 $this->doc .= $this->_xmlEntities($text);
55 $this->doc .= "</h$level>" . DOKU_LF;
70 $this->sum_summary .= $this->doc;
89 $this->sum_summary .= $this->doc;
H A Dmetadata.php14 * Some simplified rendering to $doc is done to gather the page's (text-only) abstract.
35 /** @var string temporary $doc store */
99 $this->doc = trim($this->doc);
100 if (strlen($this->doc) > self::ABSTRACT_MAX) {
101 $this->doc = PhpString::substr($this->doc, 0, self::ABSTRACT_MAX) . '…';
103 $this->meta['description']['abstract'] = $this->doc;
127 $this->doc .= $text;
216 * is moved to $store and $doc i
[all...]
H A Drenderer.php27 * $doc field. When all instructions are processed, the $doc field contents will be cached by
55 public $doc = '';
66 $this->doc = '';
156 #region Syntax modes - sub classes will need to implement them to fill $doc
53 public $doc = ''; global() variable in Doku_Renderer
/dokuwiki/inc/
H A Dparserutils.php699 $data = [$mode, & $Renderer->doc];
701 return $Renderer->doc;
/dokuwiki/vendor/simplepie/simplepie/src/
H A DParser.php86 $doc = new \DOMDocument();
87 @$doc->loadHTML($data);
88 $xpath = new \DOMXpath($doc);
H A DSimplePie.php1840 $doc = new \DOMDocument();
1841 @$doc->loadHTML($file->body);
1842 $xpath = new \DOMXpath($doc);
2660 // https://datatracker.ietf.org/doc/html/rfc8288
/dokuwiki/conf/
H A Dmime.conf35 doc !application/msword
/dokuwiki/lib/plugins/info/
H A Dsyntax.php77 $renderer->doc .= $this->renderSyntaxModes();
80 $renderer->doc .= $this->renderSyntaxTypes();
110 $renderer->doc .= date('r');
113 $renderer->doc .= "no info about " . htmlspecialchars($data[0]);
181 $doc = '<h2><a name="' . $hid . '" id="' . $hid . '">' . hsc($info['name']) . '</a></h2>';
182 $doc .= '<div class="level2">';
183 $doc .= '<p>' . strtr(hsc($info['desc']), ["\n" => "<br />"]) . '</p>';
184 $doc .= '<pre class="code">$' . $p . " = plugin_load('helper', '" . $p . "');</pre>";
185 $doc .= '</div>';
189 $doc
[all...]
/dokuwiki/inc/Parsing/
H A DParser.php105 * @param string $doc the wiki syntax text argument
108 public function parse($doc)
111 // Normalize CRs and pad doc
112 $doc = "\n" . str_replace("\r\n", "\n", $doc) . "\n";
113 $this->lexer->parse($doc);
/dokuwiki/lib/scripts/
H A Dfileuploader.js1059 var doc = iframe.contentDocument ? iframe.contentDocument: iframe.contentWindow.document,
1063 this.log("innerHTML = " + doc.body.innerHTML);
1066 response = eval("(" + doc.body.innerHTML + ")");
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG27 * Haskell: Updated doc links and types from Prelude (Jeremy Singer)
/dokuwiki/inc/Extension/
H A DRemotePlugin.php