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

10
9
[![codecov.io][codecov-img]][codecov-url]
11
10
12
-
EzXML.jl is a package to handle XML/HTML documents for primates.
11
+
EzXMLPatched.jl is a package to handle XML/HTML documents for primates.
13
12
14
13
The main features are:
15
14
* Reading and writing XML/HTML documents.
@@ -24,9 +23,9 @@ The main features are:
24
23
Installation
25
24
------------
26
25
27
-
Install EzXML.jl as follows:
26
+
Install EzXMLPatched.jl as follows:
28
27
```
29
-
julia -e 'using Pkg; Pkg.add("EzXML")'
28
+
julia -e 'using Pkg; Pkg.add("EzXMLPatched")'
30
29
```
31
30
32
31
This package depends on [libxml2](http://xmlsoft.org/) 2.9.9, which will be automatically installed as an artifact via [XML2_jll.jl](https://github.com/JuliaBinaryWrappers/XML2_jll.jl) if you use Julia 1.3 or later.
@@ -35,7 +34,7 @@ Currently, Windows, Linux, macOS, and FreeBSD are now supported.
35
34
Version compatibility
36
35
---------------------
37
36
38
-
|EzXML.jl | Julia |
37
+
|EzXMLPatched.jl | Julia |
39
38
|:--------:|:------------:|
40
39
| 1.0 | 1.0 or later |
41
40
| 1.1 | 1.3 or later |
@@ -45,7 +44,7 @@ Usage
45
44
46
45
```julia
47
46
# Load the package.
48
-
usingEzXML
47
+
usingEzXMLPatched
49
48
50
49
# Parse an XML string
51
50
# (use `readxml(<filename>)` to read a document from a file).
@@ -86,13 +85,13 @@ end
86
85
Quick reference
87
86
---------------
88
87
89
-
See the [reference page](https://bicycle1885.github.io/EzXML.jl/stable/reference/) or docstrings for more details.
88
+
See the [reference page](https://bicycle1885.github.io/EzXMLPatched.jl/stable/reference/) or docstrings for more details.
90
89
91
90
Types:
92
-
*`EzXML.Document`: an XML/HTML document
93
-
*`EzXML.Node`: an XML/HTML node including elements, attributes, texts, etc.
94
-
*`EzXML.XMLError`: an error happened in libxml2
95
-
*`EzXML.StreamReader`: a streaming XML reader
91
+
*`EzXMLPatched.Document`: an XML/HTML document
92
+
*`EzXMLPatched.Node`: an XML/HTML node including elements, attributes, texts, etc.
93
+
*`EzXMLPatched.XMLError`: an error happened in libxml2
94
+
*`EzXMLPatched.StreamReader`: a streaming XML reader
96
95
97
96
IO:
98
97
* From file: `readxml(filename|stream)`, `readhtml(filename|stream)`
0 commit comments