Skip to content

Commit b349fa1

Browse files
committed
readme
1 parent ccf10ab commit b349fa1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ This package offers fast data structures for reading and writing XML files with
1313
### `Node`/`LazyNode` Interface:
1414

1515
```
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>`)
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>)
2323
```
2424

2525
<br>

0 commit comments

Comments
 (0)