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.08"}
24 "stdcompat" {>= "16"}
25 "uutf"
26 "uucp"
27 "uunf"
28 "dune-build-info" {>= "2.7"}
29 "ppx_expect" {with-test}
30 "odoc" {with-doc}
31]
32build: [
33 ["dune" "subst"] {dev}
34 [
35 "dune"
36 "build"
37 "-p"
38 name
39 "-j"
40 jobs
41 "@install"
42 "@runtest" {with-test}
43 "@doc" {with-doc}
44 ]
45]
46dev-repo: "git+https://github.com/ocaml/omd.git"
47url {
48 src:
49 "https://github.com/ocaml/opam-source-archives/raw/main/omd-2.0.0.alpha3.tbz"
50 checksum: [
51 "sha256=278e8e5409954bee919ac853909f97061f954e728cbdb241466c235cb741377c"
52 "sha512=51c1ca573bd8e20e100788db575f3bee3c2ef61f0cf5c83fb5b67e193d2c87a223ae4a5776b1f3fe85f024cddf85bbe3e1f10988c38a88ae7304a282fd81825a"
53 ]
54}
55x-commit-hash: "2c6b1adb5107d452b69527e4494cb3fd171c48fb"