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
+24-11Lines changed: 24 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,16 @@ gradlew clean jar
22
22
23
23
This creates `build\libs\markup-blitz.jar` which serves the Markup Blitz API. It is also usable as an executable jar for standalone execution.
24
24
25
+
# Running tests
26
+
27
+
For running the tests, use this command:
28
+
29
+
```sh
30
+
gradlew test
31
+
```
32
+
33
+
Markup Blitz comes with a few tests, but it also passes all of the 3091 tests in the Invisible XML community project [ixml][GHIXML]. For running those as well, make sure that the [ixml][GHIXML] project is available next to the Markup Blitz project and use the above command.
34
+
25
35
# Markup Blitz in Eclipse
26
36
27
37
The project can be imported into Eclipse as a Gradle project.
-`Option options`: options for use at parsing time. If absent, any options passed at generation time will be in effect
81
95
82
96
**Returns:**`String`: the resulting XML
83
97
84
-
**Throws:**`BlitzException`: if any error is detected while parsing
85
-
86
98
### de.bottlecaps.markup.Blitz.Option
87
99
Either of the `generate` and `parse` methods accepts `Option` arguments for creating extra diagnostic output. Generation time options are passed to the `Parser` object implicitly, and they are used at parsing time, when `parse`is called without any options.
88
100
```java
@@ -117,6 +129,7 @@ The work in this project was supported by the [BaseX][BaseX] organization.
0 commit comments