Skip to content

Commit 062dd16

Browse files
committed
readme
1 parent d360472 commit 062dd16

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ This package offers fast data structures for reading and writing XML files with
1010

1111
#### `Node`/`LazyNode` Interface:
1212

13-
- `nodetype(node) → XML.NodeType` (See `?XML.NodeType` for details).
14-
- `Document # prolog & root Element`
15-
- `DTD # <!DOCTYPE ...>`
16-
- `Declaration # <?xml attributes... ?>`
17-
- `ProcessingInstruction # <?NAME attributes... ?>`
18-
- `Comment # <!-- ... -->`
19-
- `CData # <![CData[...]]>`
20-
- `Element # <NAME attributes... > children... </NAME>`
21-
- `Text # text`
13+
- `nodetype(node) → XML.NodeType` (an enum with one of the following values):
14+
- `Document` e.g. `children...`
15+
- `DTD` e.g. `<!DOCTYPE ...>`
16+
- `Declaration` e.g. `<?xml attributes... ?>`
17+
- `ProcessingInstruction` e.g. `<?NAME attributes... ?>`
18+
- `Comment` e.g. `<!-- ... -->`
19+
- `CData` e.g. `<![CData[...]]>`
20+
- `Element` e.g. `<NAME attributes... > children... </NAME>`
21+
- `Text` e.g. `text`
2222
- `tag(node) → String or Nothing`
2323
- `attributes(node) → Dict{String,String} or Nothing`
2424
- `value(node) → String or Nothing`

0 commit comments

Comments
 (0)