Skip to content

Commit 08f6f7d

Browse files
committed
fixed formatting
1 parent fac3caa commit 08f6f7d

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -43,24 +43,24 @@ Core capabilities for parsing, validation, and integration of XML documents:
4343

4444
### Parsing
4545

46-
* DOM builder (`DOMBuilder`) for in-memory document trees with lexical preservation
47-
* Streaming SAX parser with file, string, and Node.js stream support
46+
- DOM builder (`DOMBuilder`) for in-memory document trees with lexical preservation
47+
- Streaming SAX parser with file, string, and Node.js stream support
4848

4949
### Validation
5050

51-
* Complete DTD parser/validator (including conditional sections and parameter entities)
52-
* XML Schema 1.0 validation with support for complex types
53-
* Strict XML 1.0 / 1.1 character validation
51+
- Complete DTD parser/validator (including conditional sections and parameter entities)
52+
- XML Schema 1.0 validation with support for complex types
53+
- Strict XML 1.0 / 1.1 character validation
5454

5555
### Integration
5656

57-
* OASIS XML Catalog resolver for public/system identifiers
58-
* XML ↔ JSON conversion (lightweight and lossless modes)
57+
- OASIS XML Catalog resolver for public/system identifiers
58+
- XML ↔ JSON conversion (lightweight and lossless modes)
5959

6060
### Compliance
6161

62-
* 100% W3C XML DTD test suite
63-
* 96.3% W3C XML Schema test suite
62+
- 100% W3C XML DTD test suite
63+
- 96.3% W3C XML Schema test suite
6464

6565
## SAX Parser
6666

@@ -129,9 +129,9 @@ parser.setValidating(true); // Turns on DTD and XML Schema validation
129129

130130
## Documentation & Samples
131131

132-
* Read the step-by-step [TypesXML tutorial](docs/tutorial.md) for guided workflows.
133-
* Use the [JSON and XML Conversion Guide](docs/jsonTutorial.md) to translate between XML documents and JSON objects, with guidance on when to enable the metadata-preserving round-trip mode.
134-
* Explore the runnable examples under [`samples/`](samples/README.md) to see the code in action.
132+
- Read the step-by-step [TypesXML tutorial](docs/tutorial.md) for guided workflows.
133+
- Use the [JSON and XML Conversion Guide](docs/jsonTutorial.md) to translate between XML documents and JSON objects, with guidance on when to enable the metadata-preserving round-trip mode.
134+
- Explore the runnable examples under [`samples/`](samples/README.md) to see the code in action.
135135

136136
## Benchmark
137137

@@ -193,9 +193,9 @@ TypesXML uses a streaming SAX pipeline and processes input in chunks, allowing i
193193

194194
### Summary
195195

196-
* **tXml**: Extremely fast for small to medium files, but limited by in-memory string size
197-
* **fast-xml-parser**: Competitive speed, but same memory limitation
198-
* **TypesXML**: Consistent performance and capable of processing very large files reliably
196+
- **tXml**: Extremely fast for small to medium files, but limited by in-memory string size
197+
- **fast-xml-parser**: Competitive speed, but same memory limitation
198+
- **TypesXML**: Consistent performance and capable of processing very large files reliably
199199

200200
If your use case involves large XML documents or streaming pipelines, TypesXML provides predictable performance where in-memory parsers cannot operate.
201201

0 commit comments

Comments
 (0)