-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.yaml
87 lines (76 loc) · 1.83 KB
/
package.yaml
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
84
85
86
name: publish
version: 2.6.0
synopsis: Publishing tools for papers, books, and presentations
description: |
Tools for rendering markdown-centric documents into PDFs. There are two
programs:
[/render/]for generating PDFs from Markdown and LaTeX input; and
[/format/]for word-wrapping and nicely formatting Markdown files.
A description of this package, a list of features, and some background
to its design is contained in the
<https://github.com/aesiniath/publish/blob/main/README.md README>
on GitHub.
stability: experimental
license: MIT
license-file: LICENSE
author: Andrew Cowie <[email protected]>
maintainer: Andrew Cowie <[email protected]>
copyright: © 2016-2023 Athae Eredh Siniath and Others
category: Text
tested-with: GHC == 9.4.6
github: aesiniath/publish
dependencies:
- base >= 4.11 && < 5
- bytestring
- deepseq
- directory
- filepath
- megaparsec
- pandoc-types >= 1.22
- pandoc >= 2.11
- template-haskell
- text
- typed-process
- core-text >= 0.3.4
- core-data >= 0.3.3
- core-program >= 0.6.5
- core-telemetry >= 0.2.7
- safe-exceptions
- unix
- unordered-containers
ghc-options: -threaded -Wall -Wwarn -fwarn-tabs
executables:
render:
source-dirs: src
main: RenderMain.hs
other-modules:
- Environment
- LatexPreamble
- LatexOutputReader
- PandocToMarkdown
- ParseBookfile
- RenderDocument
- Utilities
format:
source-dirs: src
main: FormatMain.hs
other-modules:
- FormatDocument
- PandocToMarkdown
tests:
check:
dependencies:
- hspec
ghc-options: -threaded
source-dirs:
- src
- tests
main: TestSuite.hs
other-modules:
- CheckBookfileParser
- CheckTableProperties
- CompareFragments
- Environment
- FormatDocument
- PandocToMarkdown
- ParseBookfile