Home
last modified time | relevance | path

Searched refs:doctype (Results 1 – 25 of 91) sorted by relevance

1234

/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DDoctypeRegistry.php22 * @param string $doctype Name of doctype or literal doctype object
32 $doctype, argument
49 if (!is_object($doctype)) {
50 $doctype = new HTMLPurifier_Doctype(
51 $doctype,
60 $this->doctypes[$doctype->name] = $doctype;
61 $name = $doctype->name;
63 foreach ($doctype->aliases as $alias) {
73 return $doctype;
80 * @param string $doctype Name of doctype
[all …]
DHTMLDefinition.php98 public $doctype; variable in HTMLPurifier_HTMLDefinition
221 $this->doctype = $this->manager->doctype;
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/
DDOMLex.php315 if (!empty($def->doctype->dtdPublic) || !empty($def->doctype->dtdSystem)) {
317 if (!empty($def->doctype->dtdPublic)) {
318 $ret .= 'PUBLIC "' . $def->doctype->dtdPublic . '" ';
320 if (!empty($def->doctype->dtdSystem)) {
321 $ret .= '"' . $def->doctype->dtdSystem . '" ';
/plugin/asciidocjs/node_modules/doctypes/
DHISTORY.md6 - Update plist doctype
10 - Add property list doctype
/plugin/elasticsearch/action/
Dindexing.php178 * @param string $doctype
181 protected function updateIndexstate($id, $doctype = self::DOCTYPE_PAGE) argument
183 $indexStateFile = ($doctype === self::DOCTYPE_MEDIA) ?
195 public function deleteEntry($id, $doctype) argument
202 $documentId = $doctype . '_' . $id;
214 $stateFile = ($doctype === self::DOCTYPE_MEDIA) ?
/plugin/html2pdf/html2pdf/html2ps/
Dfilter.data.doctype.class.php9 $doctype = "<!DOCTYPE.*?>";
18 if (preg_match("#^(?:\s*$xml_declaration\s*)?($doctype)#", $html, $matches)) {
/plugin/asciidocjs/node_modules/pug-code-gen/
Dindex.js73 if (options.doctype) this.setDoctype(options.doctype);
168 this.doctype = doctypes[name.toLowerCase()] || '<!DOCTYPE ' + name + '>';
169 this.terse = this.doctype.toLowerCase() == '<!doctype html>';
170 this.xml = 0 == this.doctype.indexOf('<?xml');
411 visitDoctype: function(doctype){ argument
412 if (doctype && (doctype.val || !this.doctype)) {
413 this.setDoctype(doctype.val || 'html');
416 if (this.doctype) this.buffer(this.doctype);
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/
DHTMLDefinition.php40 $doctype = $this->def->doctype;
44 $ret .= $this->row('Name', $doctype->name);
45 $ret .= $this->row('XML', $doctype->xml ? 'Yes' : 'No');
46 $ret .= $this->row('Default Modules', implode(', ', $doctype->modules));
47 $ret .= $this->row('Default Tidy Modules', implode(', ', $doctype->tidyModules));
/plugin/asciidocjs/node_modules/pug/lib/
Dindex.js178 doctype: options.doctype, property
247 doctype: options.doctype, property
295 doctype: options.doctype, property
/plugin/asciidocjs/node_modules/@asciidoctor/cli/lib/
Doptions.js8 const doctype = args.doctype
32 console.log('doctype ' + doctype)
58 doctype, property
/plugin/pagecss/vendor/csstidy-2.2.1/
H A Dclass.csstidy_print.php128 * @param string $doctype shorthand for the document type
136 public function formatted_page($doctype='html5', $externalcss=true, $title='', $lang='en') { argument
137 switch ($doctype) {
156 $output .= ( $doctype === 'xhtml1.1') ? '>' : ' lang="' . $lang . '">';
/plugin/jquery-syntax/jquery-syntax/base/
Djquery.syntax.brush.html.css1 .syntax-theme-base .syntax .html .doctype {
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/
DHTML.CustomDoctype.txt7 A custom doctype for power-users who defined their own document
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
Dindex.asciidoc4 :doctype: book
/plugin/combo/resources/theme/default/pages/templates/
Dapp-edit.hbs1 <!doctype html>
Dapp-search.hbs1 <!doctype html>
Dapp-login.hbs1 <!doctype html>
Dblank.hbs1 <!doctype html>
Dapp-diff.hbs1 <!doctype html>
Dapp-revisions.hbs1 <!doctype html>
Dapp-resendpwd.hbs1 <!doctype html>
Dapp-register.hbs1 <!doctype html>
Dhamburger.hbs1 <!doctype html>
Dapp-profile.hbs1 <!doctype html>
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/
DClass.php17 $name = $config->getDefinition('HTML')->doctype->name;

1234