module UserPage : sig type t = { frontmatter : Frontmatter.t; content : string } val of_string : string -> (t, string) Result.t val of_file : 'a Eio.Path.t -> (t, string) Result.t end