opml-conduit-0.8.0.0: Streaming parser/renderer for the OPML 2.0 format.

Safe HaskellNone
LanguageHaskell2010

Text.OPML.Conduit.Parse

Contents

Description

Streaming parser for the OPML 2.0 standard.

The parser tries to be as lenient as possible. All functions may throw an OpmlException.

Synopsis

Parsers

parseOpml :: MonadCatch m => ConduitM Event o m (Maybe Opml) Source #

Parse the top-level <opml> element.

parseOpmlHead :: MonadCatch m => ConduitM Event o m (Maybe OpmlHead) Source #

Parse the <head> section. This function is more lenient than what the standard demands on the following points:

  • each sub-element may be repeated, in which case only the first occurrence is taken into account;
  • each unknown sub-element is ignored.

parseOpmlOutline :: MonadCatch m => ConduitM Event o m (Maybe (Tree OpmlOutline)) Source #

Parse an <outline> section. The value of type attributes are not case-sensitive, that is type="LINK" has the same meaning as type="link".

Exceptions