-
Notifications
You must be signed in to change notification settings - Fork 0
/
pandoc-project-relative-links.cabal
61 lines (52 loc) · 1.7 KB
/
pandoc-project-relative-links.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
name: pandoc-project-relative-links
-- https://wiki.haskell.org/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.1
synopsis: Pandoc filter for project-relative links
description:
This pandoc filter turns links looking like absolute paths into
links relative to the root directory of the project.
category: Text
homepage: https://github.com/musteresel/pandoc-project-relative-links
bug-reports: https://github.com/musteresel/pandoc-project-relative-links/issues
license: MIT
license-file: LICENSE
author: Daniel Jour
maintainer: [email protected]
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
cabal-version: >=1.10
library
exposed-modules: PandocProjectRelativeLinks
build-depends: base ==4.*
, pandoc
, pandoc-types
, containers
, text
hs-source-dirs: lib
default-language: Haskell2010
ghc-options: -Wall
executable pandoc-project-relative-links
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base
, pandoc-project-relative-links
hs-source-dirs: src
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Spec.hs
build-depends: base ==4.*
, hspec
, pandoc-project-relative-links
, pandoc
, pandoc-types
, text
source-repository head
type: git
location: https://github.com/musteresel/pandoc-project-relative-links.git