this repo has no description
1opam-version: "2.0"
2synopsis: "Executable code blocks inside markdown files"
3description: """
4`ocaml-mdx` allows to execute code blocks inside markdown files.
5There are (currently) two sub-commands, corresponding
6to two modes of operations: pre-processing (`ocaml-mdx pp`)
7and tests (`ocaml-mdx test`).
8
9The pre-processor mode allows to mix documentation and code,
10and to practice "literate programming" using markdown and OCaml.
11
12The test mode allows to ensure that shell scripts and OCaml fragments
13in the documentation always stays up-to-date."""
14maintainer: ["Thomas Gazagnaire <thomas@gazagnaire.org>"]
15authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"]
16license: "ISC"
17homepage: "https://github.com/realworldocaml/mdx"
18bug-reports: "https://github.com/realworldocaml/mdx/issues"
19depends: [
20 "dune" {>= "3.5"}
21 "ocaml" {>= "4.08.0" & < "5.1.0"}
22 "ocamlfind"
23 "fmt" {>= "0.8.7"}
24 "cppo" {build & >= "1.1.0"}
25 "csexp" {>= "1.3.2"}
26 "astring"
27 "logs" {>= "0.7.0"}
28 "cmdliner" {>= "1.1.0" & < "2.0.0"}
29 "re" {>= "1.7.2"}
30 "ocaml-version" {>= "2.3.0"}
31 "odoc-parser" {>= "1.0.0" & < "2.3.0"}
32 "lwt" {with-test}
33 "alcotest" {with-test}
34 "odoc" {with-doc}
35]
36conflicts: [
37 "result" {< "1.5"}
38]
39build: [
40 ["dune" "subst"] {dev}
41 [
42 "dune"
43 "build"
44 "-p"
45 name
46 "-j"
47 jobs
48 "@install"
49 "@runtest" {with-test}
50 "@doc" {with-doc}
51 ]
52]
53dev-repo: "git+https://github.com/realworldocaml/mdx.git"
54url {
55 src:
56 "https://github.com/realworldocaml/mdx/releases/download/2.2.0/mdx-2.2.0.tbz"
57 checksum: [
58 "sha256=e8ac4af8ae24259d309d8476f7cec70f98819ba44af83591cf303907ac3528f7"
59 "sha512=1cbbeb7889d0931189c7fc22fe90310ae6c49b9f8a56cbd131e6e1a5045383c4d075f4acb9b60501dfe59c66e4f9ac02b5a07ed5fba6fce9d1ce9ea01e59a1c0"
60 ]
61}
62x-commit-hash: "aadf69623e8fa17c85bb8767bf20c24eb22ed133"