File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,15 @@ This package offers fast data structures for reading and writing XML files with
12
12
13
13
### ` Node ` /` LazyNode ` Interface:
14
14
15
- - ` nodetype(node) → XML.NodeType ` (an enum type):
16
- - ` tag(node) → String or Nothing `
17
- - ` attributes(node) → Dict{String,String} or Nothing `
18
- - ` value(node) → String or Nothing `
19
- - ` children(node) → Vector{typeof(node)} `
20
- - ` is_simple(node) → Bool (whether node is simple .e.g. <tag>item</tag>) `
21
- - ``` simplevalue(node) → Return the `value` of the only child (e.g. "item" from <tag>item</tag>) ```
15
+ ```
16
+ nodetype(node) → `XML.NodeType` (an enum type):
17
+ tag(node) → `String` or `Nothing`
18
+ attributes(node) → `Dict{String,String}` or `Nothing`
19
+ value(node) → `String` or `Nothing`
20
+ children(node) → `Vector{typeof(node)}`
21
+ is_simple(node) → `Bool` (whether node is simple .e.g. `<tag>item</tag>`)
22
+ simplevalue(node) → e.g. `"item"` from `<tag>item</tag>`)
23
+ ```
22
24
23
25
<br >
24
26
You can’t perform that action at this time.
0 commit comments