rechiko/lib/page.mli
Kaustubh Maske Patil 1780e5c6a6 add userpage
2025-06-01 01:05:21 +05:30

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