-
Notifications
You must be signed in to change notification settings - Fork 3
/
dune-project
83 lines (74 loc) · 2.09 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
(lang dune 2.7)
(version 0.2.2)
(name pandoc)
(source (github smimram/ocaml-pandoc))
(license LGPL-2.1-or-later)
(authors "Samuel Mimram <[email protected]>")
(maintainers "Samuel Mimram <[email protected]>")
(generate_opam_files true)
(package
(name pandoc)
(synopsis "Library to write pandoc filters")
(description "This library helps writing filters for pandoc, which is a tool to convert between textual formats notably, markdown and LaTeX.")
(depends
(ocaml (>= 4.08.0))
(yojson (>= 2.0.0))
)
)
(package
(name pandoc-abbreviations)
(synopsis "Pandoc filter to add non-breaking spaces after abbreviations")
(description "This pandoc filter adds non-breaking spaces after the abbreviations listed in the `abbreviations` file.")
(depends
(ocaml (>= 4.04.0))
(pandoc (= :version))
)
)
(package
(name pandoc-crossref)
(synopsis "Pandoc filter to have LaTeX cross-references")
(description "This pandoc filter replaces #chap: and #sec: references to cref invokations.")
(depends
(pandoc (= :version))
)
)
(package
(name pandoc-include)
(synopsis "Pandoc filter to include other files")
(description "This pandoc filter allows the inclusion of other markdown files into markdown.")
(depends
(pandoc (= :version))
)
)
(package
(name pandoc-inspect)
(synopsis "Pandoc filter to inspect pandoc's JSON")
(description "This pandoc filter prints pandoc's internal JSON on the standard error.")
(depends
(pandoc (= :version))
)
)
(package
(name pandoc-pdf2png)
(synopsis "Pandoc filter to change extension of pdf images to png")
(description "This pandoc filter changes the extension of images from pdf to png.")
(depends
(pandoc (= :version))
)
)
(package
(name pandoc-comment)
(synopsis "Pandoc filter to remove comments")
(description "This pandoc filter removes LaTeX-style comments (line starting with %).")
(depends
(pandoc (= :version))
)
)
(package
(name pandoc-replace)
(synopsis "Pandoc filter to replace words")
(description "This pandoc filter replaces words by others (useful to ensure that the case is respected for instance).")
(depends
(pandoc (= :version))
)
)