Sortal_feed.EntryUnified feed entry type.
Provides a common representation across Atom, RSS, and JSON Feed entries with conversion functions from each native format.
type t = {id : string;title : string option;date : Ptime.t option;summary : string option;content : string option;url : Uri.t option;source_feed : string;source_type : Sortal_schema.Feed.feed_type;}val of_atom_entry : source_feed:string -> Syndic.Atom.entry -> tval of_rss2_item : source_feed:string -> Syndic.Rss2.item -> tval of_jsonfeed_item : source_feed:string -> Jsonfeed.Item.t -> tval pp : Format.formatter -> t -> unitval pp_full : Format.formatter -> t -> unit