File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,15 @@ This package offers fast data structures for reading and writing XML files with
10
10
11
11
#### ` Node ` /` LazyNode ` Interface:
12
12
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 `
22
22
- ` tag(node) → String or Nothing `
23
23
- ` attributes(node) → Dict{String,String} or Nothing `
24
24
- ` value(node) → String or Nothing `
You can’t perform that action at this time.
0 commit comments