rechiko/lib/page.ml
2025-05-31 19:53:06 +05:30

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