View Source FastRSS (fast_rss v0.5.0)

Parse RSS quickly using a Rust NIF.

Summary

Functions

Parse a RSS string into a map.

Parse a Atom string into a map.

Parse a RSS string into a map.

Functions

@spec parse(String.t()) :: {:ok, map()} | {:error, String.t()}

Parse a RSS string into a map.

soft deprecated: "Use FastRSS.parse_rss/1 instead" @doc since: "0.5.0" @deprecated "Use FastRSS.parse_rss/1 instead"

Link to this function

parse_atom(atom_string)

View Source (since 0.5.0)
@spec parse_atom(String.t()) :: {:ok, map()} | {:error, String.t()}

Parse a Atom string into a map.

Link to this function

parse_rss(rss_string)

View Source (since 0.5.0)
@spec parse_rss(String.t()) :: {:ok, map()} | {:error, String.t()}

Parse a RSS string into a map.