Home

Awesome

OPML Parser

Maven Central badge Javadocs License build status code coverage

Java library for parsing and writing OPML (Outline Processor Markup Language) documents.

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.