Module Blog.Entry

type t = {
updated : Date.date;
authors : Cow.Atom.author list;
subject : string;
body : string;
}
val compare : t -> t -> int
val to_html : feed:Atom_feed.t -> entry:t -> Cow.Html.t Lwt.t
val to_atom : Atom_feed.t -> t -> Cow.Atom.entry Lwt.t