this repo has no description
1opam-version: "2.0" 2maintainer: "Sylvain Le Gall <sylvain+ocaml@le-gall.net>" 3authors: [ "Sylvain Le Gall" "Mauricio Fernandez" ] 4license: "MIT" 5homepage: "https://github.com/gildor478/ocaml-markdown" 6dev-repo: "git+https://github.com/gildor478/ocaml-markdown.git" 7bug-reports: "https://github.com/gildor478/ocaml-markdown/issues" 8doc: "https://gildor478.github.io/ocaml-markdown/" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs 11 "@install" 12 "@doc" {with-doc} 13 "@runtest" {with-test}] 14] 15depends: [ 16 "ocaml" {>= "4.03.0"} 17 "dune" {>= "1.11.0"} 18 "ounit2" {with-test & > "2.0.8"} 19 "batteries" {>= "2.10.0"} 20 "tyxml" {>= "4.3.0"} 21] 22conflicts: [ 23 "ocaml-markdown" {!= "transition"} 24] 25synopsis: "Markdown processor for Ocsigen" 26description:""" 27This is a pure OCaml parser for Markdown files. It was originally written for 28Ocsigen but may be useful in other contexts too. 29""" 30url { 31 src: 32 "https://github.com/gildor478/ocaml-markdown/releases/download/v0.2.1/markdown-v0.2.1.tbz" 33 checksum: [ 34 "sha256=9c575b74ad14229ab089819a348a1a8f453023bfcf1c20ebc5fc47343623de5e" 35 "sha512=98e42acfb09026670adad6cf4efb531f06854a9b2035cbac2c4a824037a0b08d4fe4fe3b661759983bb202882d3acd73bac0c6631ed34ac35f588f0a4817341e" 36 ] 37}