Home
last modified time | relevance | path

Searched refs:Node (Results 501 – 525 of 567) sorted by path

1...<<212223

/plugin/prosemirror/parser/
H A DHruleNode.php5 class HruleNode extends Node
19 * @param Node $parent
21 public function __construct($data, Node $parent)
H A DHtmlPhpNode.php
H A DImageNode.php5 class ImageNode extends Node implements InlineNodeInterface
8 /** @var Node */
15 public function __construct($data, Node $parent, Node $previousNode = null)
76 $node = new \dokuwiki\plugin\prosemirror\schema\Node('image');
101 \dokuwiki\plugin\prosemirror\schema\Node $node,
H A DInlineNodeInterface.php8 public function __construct($data, Node $parent, Node $previous = null);
H A DLinkNode.php7 abstract class LinkNode extends Node implements InlineNodeInterface
14 /** @var Node */
22 public function __construct($data, Node $parent, Node $previousNode = null)
90 $linkNode = new \dokuwiki\plugin\prosemirror\schema\Node('link');
H A DListItemNode.php11 class ListItemNode extends Node
15 /** @var Node[] */
24 public function __construct($data, Node $parent)
H A DListNode.php11 class ListNode extends Node
22 public function __construct($data, Node $parent)
H A DNode.php7 abstract class Node implements NodeInterface class
44 * Get a Node instance of the correct type
47 * @param Node $parent
48 * @param Node|null $previous
50 * @return Node
52 public static function getSubNode($node, Node $parent, Node $previous = null)
H A DNodeInterface.php7 public function __construct($data, Node $parent);
H A DParagraphNode.php5 class ParagraphNode extends Node
13 public function __construct($data, Node $parent)
H A DPluginNode.php5 class PluginNode extends Node implements InlineNodeInterface
10 public function __construct($data, Node $parent, Node $previous = null)
H A DPreformattedNode.php5 class PreformattedNode extends Node
11 public function __construct($data, Node $parent)
H A DQuoteNode.php5 class QuoteNode extends Node
7 /** @var Node[] */
12 public function __construct($data, Node $parent)
21 error_log("************ Unknown Node type: " . $nodeData['type'] . " ************");
H A DRSSNode.php5 class RSSNode extends Node
11 public function __construct($data, Node $parent)
H A DRootNode.php11 class RootNode extends Node
14 /** @var Node[] */
19 public function __construct($data, Node $ignored = null)
H A DSmileyNode.php6 class SmileyNode extends Node implements InlineNodeInterface
15 public function __construct($data, Node $parent, Node $previous = null)
H A DSyntaxTreeBuilder.php13 * @return Node
H A DTableCellNode.php5 class TableCellNode extends Node
10 /** @var Node[] */
13 public function __construct($data, Node $parent = null)
H A DTableNode.php5 class TableNode extends Node
13 public function __construct($data, Node $parent = null)
H A DTableRowNode.php5 class TableRowNode extends Node
14 public function __construct($data, Node $parent)
H A DTextNode.php5 class TextNode extends Node implements InlineNodeInterface
11 /** @var Node */
19 public function __construct($data, Node $parent, Node $previous = null)
/plugin/prosemirror/
H A Drenderer.php11 use dokuwiki\plugin\prosemirror\schema\Node; alias
43 public function addToNodestackTop(Node $node)
48 public function addToNodestack(Node $node)
106 $this->nodestack->addTop(new Node('paragraph'));
121 $this->nodestack->addTop(new Node('blockquote'));
142 $this->nodestack->addTop(new Node('bullet_list'));
158 $this->nodestack->addTop(new Node('ordered_list'));
170 $this->nodestack->addTop(new Node('list_item'));
172 $paragraphNode = new Node('paragraph');
193 $this->nodestack->addTop(new Node('tabl
[all...]
/plugin/prosemirror/schema/
H A DNode.php6 * Class Node
9 * @link http://prosemirror.net/ref.html#model.Node
11 class Node implements \JsonSerializable class
17 /** @var Node[] holding the node's children */
30 * Node constructor.
43 * @param Node $child
45 public function addChild(Node $child)
92 * @return $this|mixed Either the wanted value or the Node itself
H A DNodeStack.php8 /** @var Node[] */
14 /** @var Node the root node */
22 $node = new Node('doc');
28 * @return Node
38 * @return Node
48 * @return Node
58 * @param Node $node
60 protected function top(Node $node)
69 * @param Node $node
71 public function addTop(Node
[all...]
/plugin/revealjs/plugin/markdown/
H A Dmarkdown.js351 …if ( typeof childElement.setAttribute == 'function' || childElement.nodeType == Node.COMMENT_NODE …
357 if ( element.nodeType == Node.COMMENT_NODE ) {

1...<<212223