File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ This package offers fast data structures for reading and writing XML files with
11
11
#### ` Node ` /` LazyNode ` Interface:
12
12
13
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 `
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 `
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