Home
last modified time | relevance | path

Searched refs:item (Results 626 – 650 of 1094) sorted by path

1...<<21222324252627282930>>...44

/plugin/mantis/lib/
H A Dclass.nusoap_base.php642 $xml .= '<item>';
645 $xml .= '</item>';
H A Dclass.wsdl.php1526 $contents .= $this->serializeType('item', $typeDef['arrayType'], $v, $use);
1528 …$contents .= $this->serialize_val($v, 'item', $typeDef['arrayType'], null, $this->XMLSchemaVersion…
H A Dnusoap.php642 $xml .= '<item>';
645 $xml .= '</item>';
6057 $contents .= $this->serializeType('item', $typeDef['arrayType'], $v, $use);
6059 …$contents .= $this->serialize_val($v, 'item', $typeDef['arrayType'], null, $this->XMLSchemaVersion…
/plugin/markdownextra/lib/meltdown/js/lib/
H A Djs-markdown-extra.js1044 ), function(match, leading_line, leading_space, marker_space, item, tailing_blank_line) { argument
1047 if (leading_line || tailing_blank_line || item.match(/\n{2,}/)) {
1049 item = leading_space + self._php_str_repeat(' ', marker_space.length) + item;
1050 item = self.runBlockGamut(self.outdent(item) + "\n");
1054 item = self.doLists(self.outdent(item));
1055 item = item.replace(/\n+$/m, '');
1056 item = self.runSpanGamut(item);
1059 return "<li>" + item + "</li>\n";
/plugin/markdownextra/
H A Dmarkdown.php1093 $item = $matches[4];
1100 preg_match('/\n{2,}/', $item))
1103 $item = $leading_space . str_repeat(' ', strlen($marker_space)) . $item;
1104 $item = $this->runBlockGamut($this->outdent($item)."\n");
1108 $item = $this->doLists($this->outdent($item));
1109 $item = preg_replace('/\n+$/', '', $item);
1110 $item = $this->runSpanGamut($item);
1113 return "<li>" . $item . "</li>\n";
H A Dsyntax.php97 return $nodes->item(0)->nodeValue;
/plugin/mcitem/
H A DREADME.md2 Adds Minecraft item link with icon
20 Every image of a block or item is named exactly like its description page in the wiki. And is provi…
28 Anywhere on a wiki page you can add the mcitem tag and specify item inside this tag in format 'modn…
H A Dplugin.info.txt5 name Minecraft item plugin
6 desc Adds Minecraft item link with icon
/plugin/mdpage/src/DokuWiki/Plugin/Mdpage/
H A DMarkdownRendererTrait.php173 foreach ($block['items'] as $item => $itemLines) {
/plugin/mdpage/vendor/cebe/markdown/block/
H A DListTrait.php73 $item = 0;
105 $block['items'][++$item][] = $line;
106 $block['lazyItems'][$item] = $lastLineEmpty;
118 $block['items'][$item][] = $line;
119 $block['lazyItems'][$item] = true;
123 $block['items'][$item][] = $line;
125 …$block['lazyItems'][$item] = empty($nextLine) || !method_exists($this, 'identifyReference') || !$t…
137 $block['items'][$item][] = $line;
178 foreach ($block['items'] as $item => $itemLines) {
/plugin/mdpage/vendor/cebe/markdown/tests/github-data/
H A Dgithub-sample.md52 1. This is a list item with two paragraphs. Lorem ipsum dolor
H A Dlists.md2 * item 1,
3 * item 2,
4 * item 3.
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
H A Dblockquote-nested.md3 > 1. This is the first list item.
4 > 2. This is the second list item.
H A Dlist-marker-in-paragraph.md2 8. This line turns into a list item.
5 list item.
H A Dlist.md46 -not a list item
50 - one item
H A Dlist_and_reference.md3 - item 1 [ref2]
4 - item 2
10 - item 1 [ref2]
11 - item 2
H A Dmd1_markdown_documentation_basics.md168 list item text. You can create multi-paragraph list items by indenting
171 * A list item.
175 * Another item in the list.
180 <li><p>A list item.</p>
182 <li><p>Another item in the list.</p></li>
H A Dmd1_tabs.md1 + this is a list item
4 + this is a list item
17 + this is an example list item
20 + this is an example list item
H A Dspecs.md285 > 1. This is the first list item.
286 > 2. This is the second list item.
404 paragraph in a list item must be indented by either 4 spaces
421 * This is a list item with two paragraphs.
423 This is the second paragraph in the list item. You're
427 * Another item in the same list.
429 To put a blockquote within a list item, the blockquote's `>`
432 * A list item with a blockquote:
435 > inside a list item.
437 To put a code block within a list item, the code block needs
[all …]
/plugin/medialist/
H A Dhelper.php131 foreach ($media as $item) {
135 $item = $item + array('level' => 1, 'base' => $base, 'linked'=> 1);
137 $item = $item + array('level' => 1, 'base' => $base);
139 $items[] = $item;
173 public function _media_item($item) { argument
179 $link['url'] = ml($item['id']);
182 $link['title'] = noNS($item['id']);
187 if (!empty($item['base'])) {
189 $link['name'] = preg_replace('/^'.$item['base'].':/','', $item['id']);
197 $link['name'] = $item['id'];
[all …]
/plugin/mediasyntax/test/
H A Ddokusyntax-test.txt6 - this is item 1
H A Dissue91 - this is item 1
2 - this is item 2
3 - this is item 3, level 2
H A Dmediasyntax-test.txt8 * a list item directly under a codeblock
9 this is a codeblock directly under a list item
18 * unordered list item
19 ** unordered list item, second level
20 * unordered list item first level under unordered list item second level
22 *unordered list item without space after asterisk
24 # ordered list item
25 # ordered list item 2
26 ## ordered list item secon
[all...]
/plugin/menuext/
H A Daction.php78 $item = new $class();
85 $item = new $class();
86 if (!is_a($item, 'dokuwiki\Menu\Item\AbstractItem')) {
88 unset($item);
92 $item = new MenuExtItem($data);
95 array_splice($event->data['items'], $order, 0, [$item]);
/plugin/metaeditor/admin/
H A Deditor.php49 foreach($list as $item)
51 if($item['type'] == 'f' || $item['type'] == 'd')
53 if($item['type'] == 'd')
55 $out .= '<li>'.$item['id'];
56 $out .= '<ul>'.$this->recurseTree(str_replace(':', '/', $item['id'])).'</ul>';
60 … $out .= '<li data-jstree=\'{"icon":"'.DOKU_URL.'/lib/images/page.png"}\'>'.$item['id'];

1...<<21222324252627282930>>...44