-
Notifications
You must be signed in to change notification settings - Fork 1
/
dune-project
31 lines (28 loc) · 917 Bytes
/
dune-project
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
29
30
31
(lang dune 2.4)
(generate_opam_files true)
(using mdx 0.1)
(name scirep)
(source (github pveber/scirep))
(homepage "https://github.com/pveber/scirep/")
(bug_reports "https://github.com/pveber/scirep/issues")
(license CeCILL-B)
(authors "Philippe Veber")
(maintainers "[email protected]")
(package
(name scirep)
(synopsis "Generate a webpage with mathematical formulae, OCaml output and graphics from markdown")
(description "
This is a quick hack to convert a Markdown file containing LaTeX-style
math formulas and OCaml code to an HTML page. The OCaml code gets
evaluated and the output is printed. Graphical outputs can also be
integrated to the page. See test.md for an example.
scirep builds on the following awesome libraries: omd, vg, higlo and
core. It also borrows quite some code from makmash and stog.
")
(depends
compiler-libs
core_kernel
ezxmlm
omd
ppx_blob
vg))