this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #23647 from dbuenzli/b0-publish-cmarkit.0.1.0

Add: cmarkit.0.1.0

authored by

Marcello Seri and committed by
GitHub
33d6032a be42f214

+57
+57
packages/cmarkit/cmarkit.0.1.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "CommonMark parser and renderer for OCaml" 3 + description: """\ 4 + Cmarkit parses the [CommonMark specification]. It provides: 5 + 6 + - A CommonMark parser for UTF-8 encoded documents. Link label resolution 7 + can be customized and a non-strict parsing mode can be activated to add: 8 + strikethrough, LaTeX math, footnotes, task items and tables. 9 + 10 + - An extensible abstract syntax tree for CommonMark documents with 11 + source location tracking and best-effort source layout preservation. 12 + 13 + - Abstract syntax tree mapper and folder abstractions for quick and 14 + concise tree transformations. 15 + 16 + - Extensible renderers for HTML, LaTeX and CommonMark with source 17 + layout preservation. 18 + 19 + Cmarkit is distributed under the ISC license. It has no dependencies. 20 + 21 + [CommonMark specification]: https://spec.commonmark.org/ 22 + 23 + Homepage: <https://erratique.ch/software/cmarkit>""" 24 + maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 25 + authors: "The cmarkit programmers" 26 + license: "ISC" 27 + tags: ["codec" "commonmark" "markdown" "org:erratique"] 28 + homepage: "https://erratique.ch/software/cmarkit" 29 + doc: "https://erratique.ch/software/cmarkit/doc" 30 + bug-reports: "https://github.com/dbuenzli/cmarkit/issues" 31 + depends: [ 32 + "ocaml" {>= "4.14.0"} 33 + "ocamlfind" {build} 34 + "ocamlbuild" {build} 35 + "topkg" {build & >= "1.0.3"} 36 + "uucp" {dev} 37 + "b0" {dev & with-test} 38 + ] 39 + depopts: ["cmdliner"] 40 + conflicts: [ 41 + "cmdliner" {< "1.1.0"} 42 + ] 43 + build: [ 44 + "ocaml" 45 + "pkg/pkg.ml" 46 + "build" 47 + "--dev-pkg" 48 + "%{dev}%" 49 + "--with-cmdliner" 50 + "%{cmdliner:installed}%" 51 + ] 52 + dev-repo: "git+https://erratique.ch/repos/cmarkit.git" 53 + url { 54 + src: "https://erratique.ch/software/cmarkit/releases/cmarkit-0.1.0.tbz" 55 + checksum: 56 + "sha512=d65ee4d62b2209fa06c2e30d2ff555636d176dcfebea5695a7d1c0aae965b5c3fb6cca57ab5b8d663d0c544ab0e646970b41b42af82ea16d6fa2c426161f2934" 57 + }