Home
last modified time | relevance | path

Searched refs:embed (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/plugin/embed/
Dsyntax.php54 $this->Lexer->addSpecialPattern('<embed\s+[^>]+\s*>.*?</embed>',$mode,'plugin_embed');
55 $this->Lexer->addSpecialPattern('<embed\s+[^/]+\s*/>',$mode,'plugin_embed');
65 if (preg_match('/<embed\s+([^>]+)\s*>(.*?)<\/embed>/ms',$match,$matches))
67 else if (preg_match('/<embed\s+([^>]+)\s*\/>/',$match,$matches))
207 "'<embed ' . \$this->_convert_link('\\1','$inclNS') . '>'",
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
Dinclude_template_from_string.test4 {% set embed = '{% embed "embed.twig" %}{% endembed %}' %}
5 {{ include(template_from_string(embed)) }}
6 --TEMPLATE(embed.twig)--
/plugin/vshare/
H A Dsites.ini10 url = //www.youtube-nocookie.com/embed/@VIDEO@
30 url = //www.dailymotion.com/embed/video/@VIDEO@
41 url = //archive.org/embed/@VIDEO@
44 rex = archive\.org/(?:embed|details)/([a-zA-Z0-9_\-]+)
53 url = //embed.nicovideo.jp/watch/@VIDEO@
59 url = //www.bitchute.com/embed/@VIDEO@
65 url = //coub.com/embed/@VIDEO@
71 url = //odysee.com/$/embed/@VIDEO@
75 rex = odysee\.com/\$/(?:embed|download)/([-%_?=/a-zA-Z0-9]+)
76 nfo = Use the embed or download URL
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
Dembed.rst1 ``embed``
5 The ``embed`` tag was added in Twig 1.8.
7 The ``embed`` tag combines the behaviour of :doc:`include<include>` and
17 {% embed "teasers_skeleton.twig" %}
28 The ``embed`` tag takes the idea of template inheritance to the level of
30 which are filled with life by child templates, the ``embed`` tag allows you to
89 Without the ``embed`` tag, you have two ways to design your templates:
112 In such a situation, the ``embed`` tag comes in handy. The common layout
124 {% embed "vertical_boxes_skeleton.twig" %}
154 The ``embed`` tag takes the exact same arguments as the ``include`` tag:
[all …]
Dindex.rst10 embed
/plugin/diagrams/script/
H A Dembed-editbutton.js8 document.querySelectorAll('object.diagrams-svg[data-pos]').forEach(embed => {
25 parseInt(embed.getAttribute('data-pos')),
26 parseInt(embed.getAttribute('data-len'))
30 embed.parentNode.querySelector('.diagrams-buttons').appendChild(button);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/embed/
Dnested.test2 "embed" tag
4 {% embed "foo.twig" %}
7 {% embed "foo.twig" %}
Dmultiple.test2 "embed" tag
5 {% embed "foo.twig" %}
12 {% embed "foo.twig" %}
Derror_line.test2 "embed" tag
5 {% embed "foo.twig" %}
Dbasic.test2 "embed" tag
5 {% embed "foo.twig" %}
Ddynamic_parent.test2 "embed" tag
5 {% embed foo %}
Dcomplex_dynamic_parent.test2 "embed" tag
5 {% embed foo ~ ".twig" %}
Dwith_extends.test2 "embed" tag
14 {% embed "foo.twig" %}
/plugin/oembed/docs/
Ddokuwiki-oembed.org7 description: Easily embed media from OEmbed providers.
16 tags : media, images, video, music, embed
26 The oEmbed plugin allows you to easily embed media from any provider that supports the [[https://oe…
34 The simplest way to embed media is with its url. e.g. ~{{>http://example.com/}}~
48 embed an image with a maximum width of 800px
52 embed a gallery
Ddokuwiki-oembed.txt4 description: Easily embed media from OEmbed providers.
13 tags : media, images, video, music, embed
22 The oEmbed plugin allows you to easily embed media from any provider that supports the [[https://oe…
30 The simplest way to embed media is with its url. e.g. ''%%{{>http://example.com/}}%%''
42 embed an image with a maximum width of 800px
46 embed a gallery
/plugin/externalembed/
DREADME.md3 A Dokuwiki plugin to embed external content from the web
4 This plugin includes domain privacy features allow you to embed content without needing a cookie / …
17 To embed YouTube content:
33 * Set **MINIMUM_EMBED_WIDTH** Parameter - the minimum size for an embed (200 default)
34 * Set **MINIMUM_EMBED_HEIGHT** Parameter - the minimum height for an embed (200 default)
35 * Set **DEFAULT_PRIVACY_DISCLAIMER** Parameter - The default disclaimer for an embed if you have no…
41 * Note how you can use standard HTML here to embed Terms Of Service links.
54 * `url: ` - The URL associated with the embed
58 * `embed-position:` - Displays the embedded content to the right, left or centre of the page. Value…
113 The following syntax is used to embed a fusion file using the fusion web player:
[all …]
/plugin/aichat/
Dcli.php93 case 'embed':
137 'embed model' => (string) $this->helper->getEmbeddingModel(),
359 $lastEmbedModel = $data['embed used'] ?? '';
369 $data['embed ran at'] = dformat();
370 $data['embed used'] = (string) $this->helper->getEmbeddingModel();
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/
Ddefined_for_blocks.test12 {%- embed 'embed' %}
22 --TEMPLATE(embed)--
/plugin/socialshareprivacy2/SSP/scripts/
Djquery.socialshareprivacy.js248 var embed = settings && settings.embed;
249 if (typeof embed === "function") {
250 embed = embed.call(this, options, uri, settings);
253 if (embed) {
254 return embed;
257 embed = ['<iframe scrolling="no" frameborder="0" style="border:none;" allowtransparency="true"'];
264 if (width) embed.push(' width="',escapeHtml(width),'"');
265 if (height) embed.push(' height="',escapeHtml(height),'"');
271 embed.push(' src="',escapeHtml(embed_url),'"></iframe>');
272 return embed.join('');
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/
DSafeEmbed.php19 $embed = $this->addElement(
36 $embed->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeEmbed();
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/
DHTML.SafeEmbed.txt7 Whether or not to permit embed tags in documents, with a number of extra
9 what websites like MySpace do to embed tags. Embed is a proprietary
DURI.SafeIframeRegexp.txt13 <li><code>%^http://www.youtube.com/embed/%</code> - Allow YouTube videos</li>
15 <li><code>%^http://(www.youtube.com/embed/|player.vimeo.com/video/)%</code> - Allow both</li>
/plugin/processing/
Dplugin.info.txt6 desc embed processing stuff
/plugin/ol3/
Dplugin.info.txt6 desc embed openlayers 3 (v6.5.0)
/plugin/htmlok/
Dplugin.info.txt6 desc Allows embed HTML and PHP

12345678910>>...12