this repo has no description
1opam-version: "2.0" 2synopsis: "Md files into odoc mld files" 3description: """ 4md2mld 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. 5 6You can use it manually as follows 7 8``` 9$ md2mld filename.md > outfile.mld 10``` 11 12In `dune` you can use it to generate an mld file with 13 14``` 15(rule (with-stdout-to outfile.mld (run md2mld filename.md))) 16```""" 17maintainer: "Marcello Seri <marcello.seri@gmail.com>" 18authors: "Marcello Seri <marcello.seri@gmail.com>" 19license: "ISC" 20homepage: "https://github.com/mseri/md2mld" 21doc: "https://mseri.github.io/md2mld/" 22bug-reports: "https://github.com/mseri/md2mld/issues" 23depends: [ 24 "ocaml" 25 "dune" {>= "1.4.0"} 26 "base-bytes" 27 "omd" {< "2.0.0~alpha1"} 28] 29build: ["dune" "build" "-p" name "-j" jobs] 30dev-repo: "git+https://github.com/mseri/md2mld.git" 31url { 32 src: 33 "https://github.com/mseri/md2mld/releases/download/0.2.0/md2mld-0.2.0.tbz" 34 checksum: [ 35 "sha256=f0e71cd226f0f97ce94ec4e3cb181641eb29131319ee550647bcbbd1501bdf9d" 36 "md5=a4118343f4c2b91435c38e29a3fce1c9" 37 ] 38}