package cow

  1. Overview
  2. Docs
type author = {
  1. name : string;
  2. uri : string option;
  3. email : string option;
}
type date = int * int * int * int * int
val compare : date -> date -> int
type meta = {
  1. id : string;
  2. title : string;
  3. subtitle : string option;
  4. author : author option;
  5. rights : string option;
  6. updated : date;
}
type summary = string option
type entry = {
  1. entry : meta;
  2. summary : summary;
  3. content : Xml.t;
  4. base : string option;
}
type feed = {
  1. feed : meta;
  2. entries : entry list;
}
val xml_of_feed : ?self:string -> feed -> Xml.t