7 lines
191 B
OCaml
7 lines
191 B
OCaml
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
|