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
|
(lang dune 2.7)
(name omd)
(version 1.3.1)
(generate_opam_files)
(license ISC)
(authors "Philippe Wang <philippe.wang@gmail.com>"
"Nicolás Ojeda Bär <n.oje.bar@gmail.com>")
(maintainers "Shon Feder <shon.feder@gmail.com>"
"Raphael Sousa Santos <@sonologico>")
(source (github ocaml/omd))
(package
(name omd)
(synopsis "A Markdown frontend in pure OCaml")
(description
"This Markdown library is implemented using only pure OCaml (including
I/O operations provided by the standard OCaml compiler distribution).
OMD is meant to be as faithful as possible to the original Markdown.
Additionally, OMD implements a few Github markdown features, an
extension mechanism, and some other features. Note that the opam
package installs both the OMD library and the command line tool `omd`.")
(tags (org:ocamllabs org:mirage))
(depends
(ocaml (>= 4.04))
base-bigarray
base-bytes))
|