package cowabloga

  1. Overview
  2. Docs
type t = {
  1. updated : Date.date;
  2. authors : Cow.Atom.author list;
  3. subject : string;
  4. 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