type feed = [
| `Blog of Atom_feed.t * Blog.Entry.t list |
| `Wiki of Atom_feed.t * Wiki.entry list |
| `Links of Atom_feed.t * Links.t list |
]
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 permalink : Atom_feed.t -> string -> string
val to_atom : meta:Atom_feed.t -> feeds:feed list -> Cow.Atom.feed Lwt.t