hedl-xml
Bidirectional XML conversion for HEDL documents.
Installation
[]
= "1.0"
Usage
use parse;
use ;
// HEDL to XML
let doc = parse?;
let xml = to_xml?;
// XML to HEDL
let doc = from_xml?;
// With config
let config = builder
.root_element
.pretty
.build;
let xml = to_xml_with_config?;
Features
- Bidirectional conversion - HEDL to XML and XML to HEDL
- Streaming support - Process large XML files
- Schema validation - Optional XSD validation
- Configurable output - Control element names and formatting
License
Apache-2.0