Skip to content

Commit 4b6f292

Browse files
committed
readme
1 parent 062dd16 commit 4b6f292

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ This package offers fast data structures for reading and writing XML files with
1111
#### `Node`/`LazyNode` Interface:
1212

1313
- `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`
14+
- `Document`: `children...`
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`
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)