-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpandoc-include-code.cabal
65 lines (59 loc) · 2.33 KB
/
pandoc-include-code.cabal
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
name: pandoc-include-code
synopsis: A Pandoc filter for including code from source files
description:
A Pandoc filter for including code from source files.
It lets you keep your examples and documentation compiled and in sync,
include small snippets from larger source files, and use Markdown or LaTeX
together with preformatted HTML-like sources, in Pandoc.
author: Oskar Wickström
maintainer: Oskar Wickström
homepage: https://github.com/owickstrom/pandoc-include-code
version: 1.5.0.0
cabal-version: >= 1.8
build-type: Simple
category: Documentation
license: MPL-2.0
license-file: LICENSE
extra-source-files: CHANGELOG.md
data-files:
test/fixtures/foo-snippet.txt
test/fixtures/foo-snippets.txt
test/fixtures/indents.txt
test/fixtures/some-text.txt
source-repository head
type: git
location: git://github.com/owickstrom/pandoc-include-code.git
library
hs-source-dirs: src
exposed-modules: Text.Pandoc.Filter.IncludeCode
Text.Pandoc.Filter.Range
build-depends: base >= 4 && < 5
, unordered-containers >= 0.2 && < 0.3
, process
, filepath
, text >= 1.2 && < 2
, mtl >= 2.2 && < 3
, pandoc-types >= 1.20 && <= 1.22
, containers
executable pandoc-include-code
hs-source-dirs: filter
main-is: Main.hs
other-modules: Paths_pandoc_include_code
build-depends: base >= 4 && < 5
, pandoc-types >= 1.20 && <= 1.22
, pandoc-include-code
test-suite filter-tests
type: exitcode-stdio-1.0
hs-source-dirs: test
other-modules: FilterTest
, Paths_pandoc_include_code
main-is: Driver.hs
build-depends: base >= 4 && < 5
, pandoc-types >= 1.20 && <= 1.22
, pandoc-include-code
, tasty
, tasty-hunit
, tasty-hspec
, text
, hspec
, hspec-expectations