Home
last modified time | relevance | path

Searched refs:text (Results 451 – 475 of 3150) sorted by relevance

1...<<11121314151617181920>>...126

/plugin/commonmark/vendor/league/commonmark/src/Extension/HeadingPermalink/
H A DHeadingPermalinkProcessor.php70 $text = StringContainerHelper::getChildText($heading, [RawMarkupContainerInterface::class]);
71 $slug = $this->slugNormalizer->normalize($text, [
/plugin/xlsx2dw/
H A DREADME.md18 ![Alt text](./screenshots/plugin_directory.png?raw=true "/xlsx2dw folder")
23 ![Alt text](./screenshots/creating_page_section.png?raw=true "Create page")
27 ![Alt text](./screenshots/using_button.jpg?raw=true "Import of tables")
31 ![Alt text](./screenshots/selecting_tables.png?raw=true "Select a table")
35 ![Alt text](./screenshots/table_in_dokusyntax.png?raw=true "DokuWiki syntax")
39 ![Alt text](./screenshots/preview_table.png?raw=true "Result")
/plugin/wysiwyg/fckeditor/_samples/html/
H A Dsample14.styles.css2 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
61 text-decoration: underline;
66 text-decoration: line-through;
187 text-align: left;
192 text-align: right;
197 text-align: center;
202 text-align: justify;
/plugin/picasawebalbum/
H A Dstyle.css62 text-align: left;
103 text-align: left;
133 text-align: center;
139 text-decoration: underline;
150 text-align: center;
166 text-decoration: underline;
171 text-decoration: none;
/plugin/pdftools/
H A Dstyle.css51 text-align:right;
90 text-decoration: none;
91 text-shadow: 0px 1px 0px #154682;
94 text-align: center;
111 text-decoration: none;
112 text-shadow: 0px 1px 0px #154682;
115 text-align: center;
/plugin/nspages/printers/
H A Dprinter.php42 function printTOC($tab, $type, $text, $hideno){ argument
43 $this->_printHeader($tab, $type, $text, $hideno);
68 private function _printHeader(&$tab, $type, $text, $hideno) { argument
74 if($text != '') {
76 $this->renderer->header($text, $this->actualTitleLevel, $this->pos);
79 $this->renderer->cdata($text);
84 $this->renderer->cdata($text);
/plugin/webdav/vendor/sabre/dav/lib/DAV/Browser/assets/
H A Dsabredav.css63 text-decoration: none;
90 text-decoration: none;
104 input[type=text], select {
122 text-decoration: none;
150 text-decoration: none;
170 text-align: left;
203 .actions input[type=text], select {
215 text-align: center;
/plugin/acronym/
H A DREADME29 2010-10-17: 2 hour: italic font and plugin info text, removing getInfo()
30 2010-10-16: 3 hours: un-teach dokuwiki that // makes text italic
35 2010-07-22: 5 hours: preformatted text should work with SUSE and Ubuntu. Solution is simple: AddEnt…
36 2010-05-05: 8 hours: preformatted text directly under normal text works, and two subsequent lines o…
37 2010-04-18: 3 hours: bold text works
45 2010-04-02: 4 hours: single blank at beginning of line makes preformatted text
/plugin/davcal/vendor/sabre/dav/lib/DAV/Browser/assets/
H A Dsabredav.css63 text-decoration: none;
90 text-decoration: none;
104 input[type=text] {
122 text-decoration: none;
150 text-decoration: none;
170 text-align: left;
203 .actions input[type=text] {
215 text-align: center;
/plugin/subjectindex/inc/
H A Dcommon.php336 * @param string $text Any text string
339 static function valid_id($text) { argument
340 $text = strtolower($text);
341 $text = str_replace('/', '-', $text);
342 $text = preg_replace('/[^0-9a-zA-Z-_]/', '', $text);
343 return $text;
/plugin/bez/scripts/
H A Dthread.js164 name = $this.find('.bez_name').text(),
206 value = selected.val() ? selected.text() : "";
249 text: false
272 var text = jQuery( this ).text();
273 if ( this.value && ( !request.term || matcher.test(text) ) ) {
276 label: text,
277 value: text,
296 if ( jQuery( this ).text().toLowerCase() === valueLowerCase ) {
/plugin/jquery-syntax/jquery-syntax/
H A Djquery.syntax.layout.editor.js5 Syntax.Editor=function(container,text){this.container=container;this.current=this.getLines();} argument
6text="",startChild=0;for(var i=0;i<children.length;i+=1){var childLines=Syntax.innerText([children…
9 if(text!=""){offsets.push(startChild-lines.length);lines.push(text);}else{startChild-=1;}
21 …nt);preCaretTextRange.setEndPoint("EndToEnd",textRange);caretOffset=preCaretTextRange.text.length;}
27 …var text=editor.textForLines(changed.start,changed.end);if(changed.start==changed.end){editor.upda…
/plugin/fckg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.cfm33 <cfset text = "">
37 <cfset text = text & "%" & CRLF
40 <!--- Strip all tags for the text. (by FredCK - #339 / #681) --->
43 <cfset text = ListAppend(text, "^" & Trim(JSStringFormat(line)), CRLF)>
47 <!--- create temp file from the submitted text, this will be passed to aspell to be check for missp…
48 <cffile action="write" file="#tempfile_in#" output="#text#" charset="utf-8">
102 <cfcontent type="text/html; charset=utf-8">
106 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
107 <link rel="stylesheet" type="text/css" href="#spellercss#" />
142 <script type="text/javascript">
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DLexer.php54 * Needed, for example, to get the text for current token. Set at
104 * You can set the text for the current token to override what is in the
109 public $text; variable in Antlr\\Antlr4\\Runtime\\Lexer
139 $this->text = null;
160 // guaranteed at least have text of current token
180 $this->text = null;
318 * char buffer start..stop. If there is a text override in 'text',
319 * use that to set the token's text. Override this method to emit
327 $this->text,
431 setText(string $text) global() argument
[all...]
/plugin/revealjs/css/theme/
H A Dbeige.css30 text-shadow: none; }
35 text-shadow: none; }
58 text-shadow: none;
101 text-align: left;
151 text-align: left;
160 text-transform: none; }
179 text-align: left;
185 text-align: center; }
189 text-align: right; }
217 text-decoration: none;
[all …]
H A Dsimple.css29 text-shadow: none; }
34 text-shadow: none; }
56 text-transform: none;
57 text-shadow: none;
73 text-shadow: none; }
100 text-align: left;
150 text-align: left;
178 text-align: left;
184 text-align: center; }
188 text-align: right; }
[all …]
H A Dleague.css32 text-shadow: none; }
37 text-shadow: none; }
59 text-transform: uppercase;
103 text-align: left;
153 text-align: left;
162 text-transform: none; }
181 text-align: left;
187 text-align: center; }
191 text-align: right; }
219 text-decoration: none;
[all …]
/plugin/filelisting/
H A Dscript.js44 var $toggleButton = $('<div>').text(this.options.toggleVisible)
53 $toggleButton.text(this.options.toggleHidden);
59 $toggleButton.text(this.options.toggleVisible);
63 $toggleButton.text(this.options.toggleHidden);
207 //text in second column
209 text = $row.find('td.plugin__filelisting_cell_name a').text();
210 if (text.match(regex)) {
250 this.$content.find('thead th').not(this.$sortHeader).find('span').text('');
253 if ($order.text()
[all...]
/plugin/multiorphan/
H A Dscript.js85 $orphanForm.find('button[type=submit]').text(getLang('start'));
93 $orphanForm.find('button[type=submit]').text(getLang('stop'));
184 … var $link = $('<a>').attr(attrs).text(action.label).appendTo($buttonSet).click(action.click);
203 $('<span/>').text(name).appendTo($wrapper);
211 var $pageId = $('<span>').text(requestPage);
358 var status = function(text) { argument
359 $('#multiorphan__out').html(text).removeClass('error');
365 var errorLog = function(text) { argument
367 if (!text || !text.length) {
375 var msg = text.split("\n");
[all …]
/plugin/captcha/
H A DEasySVG.php10 * @see http://stackoverflow.com/questions/7742148/how-to-convert-text-to-svg-paths
196 * Add a text to the SVG
203 public function addText($text, $x = 0, $y = 0, $attributes = [])
205 $def = $this->textDef($text);
220 * @param string $text UTF-8 encoded text
221 * @return string xml for text converted into SVG paths
223 public function textDef($text)
230 $text = $this->utf8ToUnicode($text);
204 addText($text, $x = 0, $y = 0, $attributes = array()) global() argument
224 textDef($text) global() argument
264 textDimensions($text) global() argument
[all...]
/plugin/openlayersmap/ol7/
H A Dol.css
/plugin/openlayersmap/syntax/
H A Dolmap.php180 [$lat, $lon, $text, $angle, $opacity, $img] = $data;
182 $poi .= ", {lat:$lat,lon:$lon,txt:'$text',angle:$angle,opacity:$opacity,img:'$img',rowId: $rowId}";
199 <td class="txt">' . $text . '</td>
288 * multi-line string of lat,lon,text triplets
289 * @return array multi-dimensional array of lat,lon,text triplets
313 [$match, $lat, $lon, $angle, $opacity, $img, $text] = $pt;
320 $text = p_get_instructions($text);
321 // dbg ( $text );
322 $text
[all...]
/plugin/cryptsign/
H A Dsign.php16 $text = $_POST['text']; variable
20 $sig = md5($id.$user.trim($text).auth_cookiesalt());
22 echo '{{',$text,' $$',$sig,'--',$user,'$$}}';
/plugin/numbering/
H A Dscript.js67 var numberInsertAtCarret = function (textAreaID, text) argument
75 text = text.replace(/%R/,add);
77 pasteText(selection,text);
/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.button.submit.php32 * @param String $text text to display
57 $text = $root->get_attribute("value");
59 $text = DEFAULT_SUBMIT_TEXT;
68 $box->_setup($text, $pipeline);

1...<<11121314151617181920>>...126