this repo has no description
1opam-version: "2.0" 2synopsis: "Md files into odoc mld files" 3description: """ 4`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. 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``` 17 18You can see the documentation generated from the latest tagged version of this README at [mseri.github.io/md2mld/md2mld/index.html](http://mseri.github.io/md2mld/md2mld/index.html).""" 19maintainer: "Marcello Seri <marcello.seri@gmail.com>" 20authors: "Marcello Seri <marcello.seri@gmail.com>" 21license: "ISC" 22homepage: "https://github.com/mseri/md2mld" 23doc: "https://mseri.github.io/md2mld/" 24bug-reports: "https://github.com/mseri/md2mld/issues" 25depends: [ 26 "ocaml" 27 "dune" {>= "1.4.0"} 28 "base-bytes" 29 "omd" {< "2.0.0~alpha1"} 30] 31build: ["dune" "build" "-p" name "-j" jobs] 32dev-repo: "git+https://github.com/mseri/md2mld.git" 33url { 34 src: 35 "https://github.com/mseri/md2mld/releases/download/0.3.0/md2mld-0.3.0.tbz" 36 checksum: [ 37 "sha256=6e3706c87716ba090cbc9f43b01c468387453d77f9e45321a6a51d19cdfd0ba0" 38 "md5=3b3833921d67f0fe66da6a03e422abf1" 39 ] 40}