opam-version: "2.0" synopsis: "Md files into odoc mld files" description: """ md2mld converts a Markdown-format file into the `mld` format used by [odoc](https://github.com/ocaml/odoc) to render HTML documentation or OCaml libraries. You can use this script to automatically embed a README.md file into API documentation for an OCaml library. You can use it manually as follows ``` $ md2mld filename.md > outfile.mld ``` In `dune` you can use it to generate an mld file with ``` (rule (with-stdout-to outfile.mld (run md2mld filename.md))) ```""" maintainer: "Marcello Seri " authors: "Marcello Seri " license: "ISC" homepage: "https://github.com/mseri/md2mld" doc: "https://mseri.github.io/md2mld/" bug-reports: "https://github.com/mseri/md2mld/issues" depends: [ "ocaml" "dune" {>= "1.4.0"} "base-bytes" "omd" {< "2.0.0~alpha1"} ] build: ["dune" "build" "-p" name "-j" jobs] dev-repo: "git+https://github.com/mseri/md2mld.git" url { src: "https://github.com/mseri/md2mld/releases/download/0.2.0/md2mld-0.2.0.tbz" checksum: [ "sha256=f0e71cd226f0f97ce94ec4e3cb181641eb29131319ee550647bcbbd1501bdf9d" "md5=a4118343f4c2b91435c38e29a3fce1c9" ] }