this repo has no description
1opam-version: "2.0"
2synopsis: "Pandoc filter to add non-breaking spaces after abbreviations"
3description:
4 "This pandoc filter adds non-breaking spaces after the abbreviations listed in the `abbreviations` file"
5maintainer: ["Samuel Mimram <smimram@gmail.com>"]
6authors: ["Samuel Mimram <smimram@gmail.com>"]
7license: "LGPL-2.1-only"
8homepage: "https://github.com/smimram/ocaml-pandoc"
9bug-reports: "https://github.com/smimram/ocaml-pandoc/issues"
10depends: [
11 "dune" {>= "2.0"}
12 "pandoc" {= version}
13 "ocaml" {>="4.04.0"} # due to String.split_on_char
14]
15build: [
16 ["dune" "subst"] {dev}
17 [
18 "dune"
19 "build"
20 "-p"
21 name
22 "-j"
23 jobs
24 "@install"
25 "@runtest" {with-test}
26 "@doc" {with-doc}
27 ]
28]
29dev-repo: "git+https://github.com/smimram/ocaml-pandoc.git"
30url {
31 src: "https://github.com/smimram/ocaml-pandoc/archive/v0.1.0.tar.gz"
32 checksum: [
33 "md5=51e94d022cc795157404c0e4cde60896"
34 "sha512=2df5ab08ff1bd4dbe11dcbd572ae97ff762a0ca9ee8d4332ade4491c22a0111c3323a0982c9cb8e3158b3f1ab89dcd9d92551bf4cd4e29b8a5015e68c816edd0"
35 ]
36}