Home
last modified time | relevance | path

Searched refs:markup (Results 26 – 50 of 147) sorted by relevance

123456

/plugin/bootswrapper/syntax/
H A Dcollapse.php50 …$markup = '<div class="bs-wrap bs-wrap-collapse collapse ' . ($collapsed ? '' : 'in') . '" id="…
52 $renderer->doc .= $markup;
H A Daccordion.php56 $markup = "<div $markup_attributes>";
58 $renderer->doc .= $markup;
H A Dwrapper.php54 $markup = "<$wrapper_tag $wrapper_attributes>";
56 $renderer->doc .= $markup;
H A Dcarousel.php66 …$markup = '<div class="bs-wrap bs-wrap-carousel carousel slide" data-ride="carousel" ' . implode('…
68 $renderer->doc .= $markup;
H A Dpane.php43 … $markup = '<div role="tabpanel" class="bs-wrap bs-wrap-tab-pane tab-pane" id="' . $id . '">';
45 $renderer->doc .= $markup;
H A Dcolumn.php74 $markup = '<div class="bs-wrap bs-wrap-col ' . trim($col) . '">';
76 $renderer->doc .= $markup;
H A Djumbotron.php60 …$markup = '<div class="bs-wrap bs-wrap-jumbotron jumbotron" style="' . implode(';', $styles) . '">…
62 $renderer->doc .= $markup;
H A Dnav.php71 $markup = '<div class="bs-wrap bs-wrap-nav" ' . implode(' ', $html5data) . '>';
73 $renderer->doc .= $markup;
H A Dtooltip.php61 …$markup = '<span class="bs-wrap bs-wrap-tooltip" data-toggle="tooltip" data-html="' . $html . '" d…
63 $renderer->doc .= $markup;
H A Dbutton.php87 $markup = '<span ' . $this->buildAttributes($html_attributes) . '>';
89 $renderer->doc .= $markup;
H A Dtext.php111 $markup = "<$text_tag $text_attributes>";
113 $renderer->doc .= $markup;
H A Dpopover.php140 …$markup = '<span class="bs-wrap bs-wrap-popover" data-toggle="popover" title="' . $title . '" ' . …
142 $renderer->doc .= $markup;
/plugin/combo/ComboStrap/
H A DParser.php12 * @param $markup - the markup
15 public static function parseMarkupToHandler($markup): Doku_Handler argument
37 $parser->parse($markup);
/plugin/exttab3/
H A Dexample.txt77 {| title="Example : Using Section markup in Table"
85 Section markup does not work.
90 {| title="Example : Using Section markup in Table"
98 Section markup does not work.
H A Dsyntax.php118 $markup = ltrim($match);
120 switch (substr($markup, 0, $len)) {
129 switch (substr($markup, 0, $len)) {
135 $attrs = substr($markup, $len);
138 msg($this->getPluginName().' ERROR: unknown syntax: '.hsc($markup) ,-1);
/plugin/ckgdoku/scripts/
H A Dparse_wiki.js.unc160 markup['blank'] = "";
161 markup['fn_start'] = '((';
162 markup['fn_end'] = '))';
163 markup['row_span'] = ":::";
284 if(markup[tag]) {
308 markup['li'] = markup[tag];
1046 if(this.prev_list_level > 0 && markup['li'] == markup['ol']) {
1157 } // if markup tag
1183 if(!markup[tag]) return;
1317 tag = markup[tag];
[all …]
/plugin/ckgedit/scripts/
H A Dparse_wiki.js.unc134 var markup = {
201 markup['temp_u'] = "CKGE_TMP_u";
235 markup['blank'] = "";
236 markup['fn_start'] = '((';
237 markup['fn_end'] = '))';
238 markup['row_span'] = ":::";
368 if (markup[tag]) {
396 markup['li'] = markup[tag];
1085 if (this.prev_list_level > 0 && markup['li'] == markup['ol']) {
1183 } // if markup tag
[all …]
/plugin/box/
H A Dplugin.info.txt6 … are optional. The title can include some wiki markup, the box contents can include almost any wik…
/plugin/box2/
H A Dplugin.info.txt8 … are optional. The title can include some wiki markup, the box contents can include almost any wik…
/plugin/keyboard/
H A Dplugin.info.txt7 …in order to markup text as keyboard keys, similar to (and making use of) the existing (X)HTML tag …
/plugin/highlightjs/highlight/
H A Dhighlight.js168 var markup = mode.noMarkup?'':'<span class="' + mode.className + '">';
170 result += markup;
173 result += escape(lexem) + markup;
176 result += markup;
199 var markup = current_mode.noMarkup?'':'</span>';
201 result += processBuffer(current_mode.buffer + buffer, current_mode) + markup;
203 … result += processBuffer(current_mode.buffer + buffer, current_mode) + markup + escape(lexem);
205 result += processBuffer(current_mode.buffer + buffer + lexem, current_mode) + markup;
208 markup = modes[modes.length - 2].noMarkup?'':'</span>';
209 result += markup;
/plugin/mdpage/vendor/cebe/markdown/
H A DParser.php61 $markup = $this->renderAbsy($absy);
64 return $markup;
86 $markup = $this->renderAbsy($absy);
89 return $markup;
/plugin/imagemap/
H A DREADME11 Type normal wiki markup here. Links will be automatically
37 tag, in both the image map and the alternate markup.
39 The wiki markup inside the map block will be generated by not displayed in
41 can hide the image and display the alternate markup. The plugin is already
/plugin/imagemapping/
H A DREADME11 Type normal wiki markup here. Links will be automatically
37 tag, in both the image map and the alternate markup.
39 The wiki markup inside the map block will be generated by not displayed in
41 can hide the image and display the alternate markup. The plugin is already
/plugin/plantumlparser/syntax/
H A Dinjector.php43 $markup = str_replace('</' . $this->TAG . '>', '', str_replace('<' . $this->TAG . '>', '', $match));
53 $diagramObject = new PlantUmlDiagram($markup,$plantUmlUrl);
57 'markup' => $diagramObject->getMarkup(),
81 if(is_a($renderer,'renderer_plugin_dw2pdf') && (preg_match("/(@startlatex|@startmath|<math|<latex)/", $data['markup']))){
89 $renderer->doc .= "<span>".$data['markup']."</span>";

123456