OPML

An OPML parser for Rust.

Getting Started

```rust use opml::OPML;

let xml = r#""#; let parsed = OPML::new(xml).unwrap();

println!("{:#?}", parsed); ```

Check out the documentation for further details.

CLI

Looking for a command-line utility to parse OPML documents? Check out the opml-cli, a small wrapper around this crate that will let you do just that.

License

Open-sourced with either the

at your option.

The samples located in tests/spec_samples were taken from the OPML 2.0 spec and are subject to their own license.