Awesome
OPML Parser
Java library for parsing and writing OPML (Outline Processor Markup Language) documents.
- supports 1.0 specification
- supports 2.0 specification
- over 90% test coverage
Usage
Provide your serialized input as String
, InputStream
or Reader
:
Opml opml = new OpmlParser().parse(input);
To create XML from an Opml
instance, use the OpmlWriter
class:
String xml = new OpmlWriter().write(opml);
Requirements
This library requires Java 8 or higher.
Maven Central
Include this project directly from Maven Central
<dependency>
<groupId>be.ceau</groupId>
<artifactId>opml-parser</artifactId>
<version>${project.version}</version>
</dependency>
GnuPG public key
Verify signature files with my GnuPG public key.
License
Licensed under the Apache 2.0 license.