Skip to content

Commit 2ea50e9

Browse files
committed
[new release] omd (2.0.0.alpha3)
CHANGES: - Expose the HTML escape function `htmlentities` (ocaml-community/omd#295 @cuihtlauac) - Support generation of identifiers in headers (ocaml-community/omd#294, @tatchi) - Support GitHub-Flavoured Markdown tables (ocaml-community/omd#292, @bobatkey) - Update parser to support CommonMark Spec 0.30 (ocaml-community/omd#266, @SquidDev) - Preserve the order of input files in the HTML output to stdout (ocaml-community/omd#258, @patricoferris) - Fix all deviations from CommonMark Spec 0.30 (ocaml-community/omd#284, ocaml-community/omd#283, ocaml-community/omd#278, ocaml-community/omd#277, ocaml-community/omd#269, @tatchi)
1 parent dfa5f66 commit 2ea50e9

File tree

1 file changed

+55
-0
lines changed
  • packages/omd/omd.2.0.0.alpha3

1 file changed

+55
-0
lines changed

packages/omd/omd.2.0.0.alpha3/opam

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
opam-version: "2.0"
2+
synopsis: "A Markdown frontend in pure OCaml"
3+
description: """
4+
This Markdown library is implemented using only pure OCaml (including
5+
I/O operations provided by the standard OCaml compiler distribution).
6+
OMD is meant to be as faithful as possible to the original Markdown.
7+
Additionally, OMD implements a few Github markdown features, an
8+
extension mechanism, and some other features. Note that the opam
9+
package installs both the OMD library and the command line tool `omd`."""
10+
maintainer: [
11+
"Shon Feder <shon.feder@gmail.com>" "Raphael Sousa Santos <@sonologico>"
12+
]
13+
authors: [
14+
"Philippe Wang <philippe.wang@gmail.com>"
15+
"Nicolás Ojeda Bär <n.oje.bar@gmail.com>"
16+
]
17+
license: "ISC"
18+
tags: ["org:ocamllabs" "org:mirage"]
19+
homepage: "https://github.com/ocaml/omd"
20+
bug-reports: "https://github.com/ocaml/omd/issues"
21+
depends: [
22+
"dune" {>= "2.7"}
23+
"ocaml" {>= "4.08"}
24+
"stdcompat"
25+
"uutf"
26+
"uucp"
27+
"uunf"
28+
"dune-build-info" {>= "2.7"}
29+
"ppx_expect" {with-test}
30+
"odoc" {with-doc}
31+
]
32+
build: [
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+
]
46+
dev-repo: "git+https://github.com/ocaml/omd.git"
47+
url {
48+
src:
49+
"https://github.com/ocaml/omd/releases/download/2.0.0.alpha3/omd-2.0.0.alpha3.tbz"
50+
checksum: [
51+
"sha256=278e8e5409954bee919ac853909f97061f954e728cbdb241466c235cb741377c"
52+
"sha512=51c1ca573bd8e20e100788db575f3bee3c2ef61f0cf5c83fb5b67e193d2c87a223ae4a5776b1f3fe85f024cddf85bbe3e1f10988c38a88ae7304a282fd81825a"
53+
]
54+
}
55+
x-commit-hash: "2c6b1adb5107d452b69527e4494cb3fd171c48fb"

0 commit comments

Comments
 (0)