this repo has no description
1opam-version: "2.0" 2synopsis: "A Markdown frontend in pure OCaml" 3description: """ 4This Markdown library is implemented using only pure OCaml (including 5I/O operations provided by the standard OCaml compiler distribution). 6OMD is meant to be as faithful as possible to the original Markdown. 7Additionally, OMD implements a few Github markdown features, an 8extension mechanism, and some other features. Note that the opam 9package installs both the OMD library and the command line tool `omd`.""" 10maintainer: [ 11 "Shon Feder <shon.feder@gmail.com>" "Raphael Sousa Santos <@sonologico>" 12] 13authors: [ 14 "Philippe Wang <philippe.wang@gmail.com>" 15 "Nicolás Ojeda Bär <n.oje.bar@gmail.com>" 16] 17license: "ISC" 18tags: ["org:ocamllabs" "org:mirage"] 19homepage: "https://github.com/ocaml/omd" 20bug-reports: "https://github.com/ocaml/omd/issues" 21depends: [ 22 "dune" {>= "2.7"} 23 "ocaml" {>= "4.04"} 24 "base-bigarray" 25 "base-bytes" 26 "odoc" {with-doc} 27] 28build: [ 29 ["dune" "subst"] {dev} 30 [ 31 "dune" 32 "build" 33 "-p" 34 name 35 "-j" 36 jobs 37 "@install" 38 "@runtest" {with-test} 39 "@doc" {with-doc} 40 ] 41] 42dev-repo: "git+https://github.com/ocaml/omd.git" 43url { 44 src: "https://github.com/ocaml/opam-source-archives/raw/main/omd-1.3.2.tbz" 45 checksum: [ 46 "sha256=6023e1642631f08f678eb5725820879ed7bb5a3ffee777cdedebc28c1f85fadb" 47 "sha512=fa2070a5f5d30b2cc422937ac4158bb087134a69d47fa15df403afb1c0c60a73dd436c949faa8d44e0b65bdee039779d86191b55085b717253f91ef20a69ef98" 48 ] 49} 50x-commit-hash: "bc6c0d568b90b61143e9863cb6ef7b3989b3313a"