| /plugin/wysiwyg/ |
| D | hider.php | 7 function get_wysiwyg($name, $markup) { argument 8 …preg_match("/<wysiwyg ".$name." >>>>>".wysiwyg_GUID."(.*?)".wysiwyg_GUID."<<<<< \\/>/",$markup,$ma… 12 function save_wysiwyg($pickle, $markup) { argument 17 $markup = insert_wysiwyg($key, $html, $markup); 22 …$markup = preg_replace("/(?<=<wysiwyg )([^\\s]*) (?=\\/>)/","$1 >>>>>".wysiwyg_GUID."Edit me!".wys… 23 return $markup; 26 function load_wysiwyg($markup) { argument 29 $names = nameList_wysiwyg($markup); 32 $pickle[$name] = get_wysiwyg($name, $markup); 34 $markup = hide_wysiwyg($name, $markup); [all …]
|
| /plugin/yalist/ |
| D | syntax.php | 267 $markup = ''; 270 $markup = "<ol>\n"; 273 $markup = "</ol>\n"; 276 $markup = "<ul>\n"; 279 $markup = "</ul>\n"; 282 $markup = "<dl>\n"; 285 $markup = "</dl>\n"; 288 $markup = "<li class=\"level${data['level']}\">"; 291 $markup = "<div class=\"li\">\n"; 295 $markup = "\n</div>"; [all …]
|
| /plugin/latexcaption/syntax/ |
| D | reference.php | 90 $markup = '<a href="#mjx-eqn'.rawurlencode(':').$label.'">'; 91 $markup .= ($disptype) ? $this->getLang('equation'.$langset).' ' : ''; 92 $markup .= '\eqref{'.$label.'}</a>'; 93 $renderer->doc .= $markup; 97 $markup = '<a href="#'.$label.'">'; 103 $markup .= $disptype ? $this->getLang($type.$langset).' ' : ''; 104 $markup .= $parnum.'('.$this->helper->number_to_alphabet($num).')'; 107 $markup .= $disptype ? $this->getLang($type.$langset).' ' : ''; 108 $markup .= $num; 111 $markup .= '??REF:'.$label.'??'; [all …]
|
| D | caption.php | 235 … $markup = '<'.$tagtype.' class="plugin_latexcaption_'.$type.' plugin_latexcaption_'.$classes.'" '; 238 $markup .= 'id="'.$renderer->_xmlEntities($label).'"'; 241 $markup .= '>'; 242 $renderer->doc .= $markup; 261 …$markup .= '<'.$captagtype.' class="plugin_latexcaption_caption"><span class="plugin_latexcaption_… 264 $markup .= '>'; 266 $markup .= '('.$this->helper->number_to_alphabet($count).') '; 269 $markup .= $this->getLang($type.$langset).' '. $count.$separator; 271 $markup .= '</span><span class="plugin_latexcaption_caption_text">'; 273 $renderer->doc .= $markup;
|
| /plugin/bootswrapper/syntax/ |
| D | panel.php | 80 $markup = '<div class="bs-wrap bs-wrap-panel panel panel-' . $type . '">'; 88 …$markup .= '<div class="panel-heading"><h4 class="panel-title">' . $title . '</h4>' . $subtitle . … 93 $markup .= '<div class="panel-body">'; 102 $renderer->doc .= $markup; 108 $markup = ''; 111 $markup = '</div>'; 115 $markup .= '<div class="panel-footer">' . $footer . '</div>'; 118 $markup .= '</div>'; 119 $renderer->doc .= $markup;
|
| D | modal.php | 124 …$markup = '<div class="bs-wrap bs-wrap-modal modal ' . $fade . '" id="' . $id . '" role="dialog" t… 126 …$markup .= '<div class="bs-wrap modal-dialog modal-' . $size . '" role="document"><div class="bs-w… 130 $markup .= '<div class="bs-wrap modal-header">'; 133 …$markup .= '<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria… 136 $markup .= '<h4 class="bs-wrap modal-title">' . $title . '</h4>'; 137 $markup .= '</div>'; 141 $markup .= '<div class="bs-wrap modal-body">'; 144 …$markup .= '<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria… 147 $renderer->doc .= $markup;
|
| D | callout.php | 125 $markup = '<div ' . $this->buildAttributes($html_attributes) . '>'; 128 …$markup .= '<div class="row"><div class="col-xs-1"><i class="bs-callout-icon ' . $icon_class . '"'… 132 $markup .= '<h4' . $text_color . '>' . $title . '</h4>'; 135 $renderer->doc .= $markup; 140 $markup = '</div>'; 143 $markup .= '</div></div>'; 146 $renderer->doc .= $markup;
|
| D | alert.php | 64 $markup = '<div ' . $this->buildAttributes($html_attributes) . '>'; 67 …$markup .= '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria… 71 $markup .= '<i class="' . $icon . '"></i> '; 74 $renderer->doc .= $markup;
|
| D | progressbar.php | 83 …$markup = '<div class="bs-wrap bs-wrap-progress-bar progress-bar progress-bar-' . $type . ' ' . $c… 86 $markup .= "$value%"; 88 $markup .= '<span class="sr-only">' . $value . '%</span> '; 91 $renderer->doc .= $markup;
|
| D | label.php | 54 … $markup = '<' . $label_tag . ' class="bs-wrap bs-wrap-label label label-' . $type . '">'; 57 $markup .= '<i class="' . $icon . '"></i> '; 60 $renderer->doc .= $markup;
|
| /plugin/aichat/vendor/erusev/parsedown/ |
| D | Parsedown.php | 39 $markup = $this->lines($lines); 42 $markup = trim($markup, "\n"); 44 return $markup; 287 $markup = ''; 296 $markup .= "\n"; 297 … $markup .= isset($Block['markup']) ? $Block['markup'] : $this->element($Block['element']); 300 $markup .= "\n"; 304 return $markup; 1056 $markup = ''; 1109 $markup .= $this->unmarkedText($unmarkedText); [all …]
|
| /plugin/combo/ComboStrap/ |
| H A D | ComboFs.php | 23 $markup = MarkupPath::createPageFromPathObject($path); 27 $databasePage->getDatabaseRowFromPage($markup); 29 $pageId = PageId::generateAndStorePageId($markup); 39 $markup = MarkupPath::createPageFromPathObject($path); 41 DatabasePageRow::getOrCreateFromPageObject($markup)
|
| H A D | FetcherMarkupWebcode.php | 37 public static function createFetcherMarkup(string $markup): FetcherMarkupWebcode argument 40 ->setRequestedMarkup($markup); 70 $markup = $tagAttributes->getValueAndRemove($markupProperty); 71 if ($markup === null) { 74 $this->setRequestedMarkup($markup); 151 public function setRequestedMarkup(string $markup): FetcherMarkupWebcode argument 153 $this->requestedMarkup = $markup;
|
| H A D | MarkupRenderer.php | 51 * @param string $markup 56 …public static function createFromMarkup(string $markup, ?Path $executingPath, ?WikiPath $contextPa… argument 59 ->setMarkup($markup); 70 private function setMarkup(string $markup): MarkupRenderer argument 72 $this->markupSource = $markup;
|
| /plugin/nstoc/ |
| D | syntax.php | 125 $markup = array(); // buffer to avoid string re-allocations 134 $markup[] = '</div>'; 138 $markup[] = '<ul class="nstoc"><li class="level' 146 $markup[] = '</div>'; 150 $markup[] .= '</li></ul>'; 152 $markup[] = '</div>'; 156 $markup[] = '</li><li class="level' . $curLvl 162 $markup[] = '</div>'; 164 $markup[] = '</li><li class="level' . $curLvl 170 $markup[] = $link [all …]
|
| /plugin/plantumlparser/syntax/ |
| D | PlantUmlDiagram.php | 7 private $markup; variable in PlantUmlDiagram 11 public function __construct($markup,$plantUmlUrl) { argument 12 $this->markup = nl2br($markup); 13 $this->encoded = $this->encodep($markup); 18 return $this->markup;
|
| /plugin/skipentity/ |
| D | README | 1 The syntax for this plugin is: ``<text>``. This is adapted from the markdown markup for code. 2 Whatever is included inside the markup will be rendered literally. This means that no other 3 formatting markup will work here. For instance,``**bold**`` will be rendered as **bold**. 4 If you want bold, then the bold has to be placed outside the skip-entity markup:
|
| /plugin/creole/ |
| D | action.php | 35 $markup = substr('======', 0, $match[1]); 36 $event->data[$i]['open'] = $markup." "; 37 $event->data[$i]['close'] = " ".$markup."\\n";
|
| /plugin/typography/syntax/ |
| D | base.php | 78 $markup = substr($this->pattern[4], 2, -1); 81 $params = strtolower(ltrim(substr($match, strlen($markup)+1, -1))); 82 if ($this->styler->is_short_property($markup)) { 83 $params = $markup.(($params[0] == ':') ? '' : ':').$params;
|
| /plugin/combo/action/ |
| H A D | pagesystemmutation.php | 167 $markup = MarkupPath::createMarkupFromId($id); 185 PageId::createForPage($markup) 188 ComboFs::createIfNotExists($markup); 198 ComboFs::delete($markup);
|
| /plugin/mdpage/vendor/cebe/markdown/bin/ |
| D | markdown | 82 $markup = $md->parse($markdown); variable 100 $markup 105 echo $markup;
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/ |
| D | length_utf8.test | 7 {{ markup|length }} 9 return ['string' => 'été', 'markup' => new \Twig\Markup('foo', 'UTF-8')]
|
| /plugin/asciidocjs/node_modules/ejs/lib/ |
| D | utils.js | 96 exports.escapeXML = function (markup) { argument 97 return markup == undefined 99 : String(markup)
|
| /plugin/ckgedit/scripts/ |
| D | parse_wiki.js.unc | 134 var markup = { 201 markup['temp_u'] = "CKGE_TMP_u"; 202 markup['temp_strong'] = "CKGE_TMP_strong"; 203 markup['temp_em'] = "CKGE_TMP_em"; 204 markup['temp_i'] = "CKGE_TMP_i"; 205 markup['temp_b'] = "CKGE_TMP_b"; 206 markup['temp_del'] = "CKGE_TMP_del"; 207 markup['temp_strike'] = "CKGE_TMP_strike"; 208 markup['temp_code'] = "CKGE_TMP_code"; 209 markup['temp_sup'] = "CKGE_TMP_sup"; [all …]
|
| /plugin/ckgdoku/scripts/ |
| D | parse_wiki.js.unc | 123 var markup = { 'b': '**', 'i':'//', 'em': '//', 'u': '__', 'br':line_break, 'strike': '<del>', 138 markup['temp_u'] = "CKGE_TMP_u"; 139 markup['temp_strong'] = "CKGE_TMP_strong"; 140 markup['temp_em'] = "CKGE_TMP_em"; 141 markup['temp_i'] = "CKGE_TMP_i"; 142 markup['temp_b'] = "CKGE_TMP_b"; 143 markup['temp_del'] = "CKGE_TMP_del"; 144 markup['temp_strike'] = "CKGE_TMP_strike"; 145 markup['temp_code'] = "CKGE_TMP_code"; 146 markup['temp_sup'] = "CKGE_TMP_sup"; [all …]
|