You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -77,15 +77,15 @@ Declaration(; attributes...)
77
77
Document(children...)
78
78
DTD(; attributes...)
79
79
Element(tag, children...; attributes...)
80
-
ProcessingInstruction(; attributes...)
80
+
ProcessingInstruction(tag; attributes...)
81
81
Text(value)
82
82
```
83
83
84
84
### `XML.LazyNode`
85
85
86
86
A lazy data structure that just keeps track of the position in the raw data (`Vector{UInt8}`) to read from.
87
87
88
-
-Iteration in depth first search (DFS) order. This is the natural order in which you would visit XML nodes by reading an XML document from top to bottom.
88
+
-You can iterate over a `LazyNode` to "read" through an XML file:
0 commit comments