Module Cowabloga.Feed

type feed = [
| `Blog of Atom_feed.t * Blog.Entry.t list
| `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