Home
last modified time | relevance | path

Searched refs:indent (Results 1 – 13 of 13) sorted by relevance

/dokuwiki/inc/Parsing/Handler/
H A DGfmLists.php22 $indent = strspn($stripped, ' ');
23 $digitLen = strspn($stripped, '0123456789', $indent);
26 'depth' => intdiv($indent, 2) + 1,
28 'start' => $digitLen > 0 ? (int) substr($stripped, $indent, $digitLen) : 1,
/dokuwiki/inc/Parsing/ParserMode/
H A DPreformatted.php32 $indent = str_repeat(' ', $this->getIndentWidth());
53 $this->Lexer->addEntryPattern('\n' . $indent . $listGuard, $mode, 'preformatted');
57 $this->Lexer->addPattern('\n' . $indent, 'preformatted');
H A DGfmListblock.php214 $indent = str_replace("\t", " ", $m[1]);
218 'markerMatch' => "\n" . $indent . $marker,
219 'dedent' => strlen($indent) + strlen($marker) + 1,
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php377 * @param int $indent
380 protected function htmlUserForm($cmd, $user = '', $userdata = [], $indent = 0) argument
413 $indent + 6
422 $indent + 6
431 $indent + 6
440 $indent + 6
449 $indent + 6
458 $indent + 6
487 $this->htmlFilterSettings($indent + 10);
515 * @param int $indent
[all …]
/dokuwiki/_test/tests/Parsing/ParserMode/
H A DGfmHeaderTest.php164 foreach ([1, 2, 3] as $indent) {
167 $this->P->parse(str_repeat(' ', $indent) . '### foo');
170 "indent=$indent must NOT open a heading");
/dokuwiki/inc/
H A Ddeprecated.php200 * @param int $indent number of spaces indention
203 function ptln($string, $indent = 0) argument
206 echo str_repeat(' ', $indent) . "$string\n";
/dokuwiki/lib/tpl/dokuwiki/css/
H A Ddesign.less150 text-indent: -99999px;
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/
H A Dsmoothness.css70 text-indent: -99999px;
188 text-indent: -9999px;
194 text-indent: 0;
210 text-indent: -9999px;
218 text-indent: 0;
473 text-indent: -99999px;
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php3121 protected function indent(&$result) { function in GeSHi
3838 $this->indent($parsed_code);
/dokuwiki/_test/tests/Parsing/Markdown/gfm-spec/
H A Dspec.txt591 One to three spaces indent are allowed:
1090 Four spaces indent is too much:
3538 consists of 0-3 spaces of initial indent, plus (a) the character `>` together
4373 Note that an additional space indent is interpreted as space
4400 a three-space indent, the rules do not allow us to form a list item by
4426 with 1-3 spaces indent, the indentation can always be removed without
4659 Four spaces indent gives a code block:
4771 So, in this case we need two spaces indent:
4911 4. "It looks nice if you indent every line of the subsequent paragraphs,
5046 Rather than requiring a fixed indent from the margin, we could require
[all …]
/dokuwiki/_test/data/pages/wiki/
H A Dsyntax.txt198 Dokuwiki supports ordered and unordered lists. To create a list item, indent your text by two space…
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt206 Dokuwiki supports ordered and unordered lists. To create a list item, indent your text by two space…
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG625 - Optimization using basic rework of indent function improving tab expansion performance (BenBE)