-
Notifications
You must be signed in to change notification settings - Fork 6
/
markdown.opam
29 lines (29 loc) · 878 Bytes
/
markdown.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
opam-version: "2.0"
maintainer: "Sylvain Le Gall <[email protected]>"
authors: [ "Sylvain Le Gall" "Mauricio Fernandez" ]
license: "MIT"
homepage: "https://github.com/gildor478/ocaml-markdown"
dev-repo: "git+https://github.com/gildor478/ocaml-markdown.git"
bug-reports: "https://github.com/gildor478/ocaml-markdown/issues"
doc: "https://gildor478.github.io/ocaml-markdown/"
build: [
["dune" "build" "-p" name "-j" jobs
"@install"
"@doc" {with-doc}
"@runtest" {with-test}]
]
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "1.11.0"}
"ounit2" {with-test & > "2.0.8"}
"batteries" {>= "2.10.0"}
"tyxml" {>= "4.3.0"}
]
conflicts: [
"ocaml-markdown" {!= "transition"}
]
synopsis: "Markdown parser and printer"
description:"""
This is a pure OCaml parser for Markdown files. It was originally written for
Ocsigen but may be useful in other contexts too.
"""