package cowabloga

  1. Overview
  2. Docs

Generate an aggregated link feed from all the other feeds

type feed = [
  1. | `Blog of Atom_feed.t * Blog.Entry.t list
  2. | `Wiki of Atom_feed.t * Wiki.entry list
]
val feed_icon : [< `Blog of 'a | `Links of 'b | `Wiki of 'c ] -> string
val feed_uri : [< `Blog of Atom_feed.t | `Links of Atom_feed.t | `Wiki of Atom_feed.t ] -> Uri.t
val to_atom_entries : feed list -> (Cow.Atom.entry * [> `Blog of Atom_feed.t | `Links of Atom_feed.t | `Wiki of Atom_feed.t ]) list Lwt.t
val to_html : ?limit:int -> feed list -> Cow.Html.t Lwt.t
val to_atom : meta:Atom_feed.t -> feeds:feed list -> Cow.Atom.feed Lwt.t