8 lines
236 B
OCaml
8 lines
236 B
OCaml
module UserPage = struct
|
|
type t = { frontmatter : Frontmatter.t; content : string }
|
|
|
|
(* let of_string (content : string) : t =
|
|
match Frontmatter.extract_frontmatter content with
|
|
| (yaml_content, remaining_content) -> *)
|
|
end
|