## Node.new()


Create a new detached node of the given type.


Usage

``` python
Node.new(node_type)
```


The node is not part of any tree. Use mutation methods ([append_child()](Node.append_child.md#multimark.Node.append_child), [insert_before()](Node.insert_before.md#multimark.Node.insert_before), etc.) to attach it.


## Parameters


`node_type: NodeType`  
The type of node to create.


## Returns


`Node`  
A new detached node.
