-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpandoc-plantuml-diagrams.cabal
76 lines (72 loc) · 3.14 KB
/
pandoc-plantuml-diagrams.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
66
67
68
69
70
71
72
73
74
75
76
name: pandoc-plantuml-diagrams
version: 0.1.1.0
synopsis: Render and insert PlantUML diagrams with Pandoc
description: PlantUML renders different types of UML diagrams.
This filter invokes plantuml.jar (which must be present
in the current directory) for any yet unrendered diagrams.
.
Diagrams are recognized in CodeBlocks that have the
class "uml". It is advisable to also include an attribute
"caption", which is rendered as alternate text for the image.
If an ID is present, it is additionally appended compatible
with pandoc-crossref.
license: MIT
license-file: LICENSE
author: Jonas Weber
maintainer: contact@jonasw.de
category: Text
build-type: Simple
cabal-version: >=1.10
library
Exposed-modules: Text.Pandoc.PlantUML.Filter
, Text.Pandoc.PlantUML.Filter.IORender
, Text.Pandoc.PlantUML.Filter.Types
, Text.Pandoc.PlantUML.Filter.FileNameGenerator
, Text.Pandoc.PlantUML.Filter.Formats
, Text.Pandoc.PlantUML.Filter.OutputBlock
build-depends: base >= 4 && < 5
, pandoc-types
, SHA
, process
, directory
, utf8-string
, bytestring
, text
hs-source-dirs: src
default-language: Haskell2010
Executable pandoc-plantuml-diagrams
Main-Is: Main.hs
build-depends: base >= 4 && < 5
, pandoc-plantuml-diagrams
, pandoc-types
default-language: Haskell2010
Test-Suite test-pandoc-crossref
Type: exitcode-stdio-1.0
Main-Is: Spec.hs
hs-source-dirs: test, src
default-language: Haskell2010
other-modules: Text.Pandoc.PlantUML.Filter
, Text.Pandoc.PlantUML.Filter.IORender
, Text.Pandoc.PlantUML.Filter.Types
, Text.Pandoc.PlantUML.Filter.FileNameGenerator
, Text.Pandoc.PlantUML.Filter.Formats
, Text.Pandoc.PlantUML.Filter.OutputBlock
, Text.Pandoc.PlantUML.Filter.FileNameGeneratorSpec
, Text.Pandoc.PlantUML.Filter.FormatsSpec
, Text.Pandoc.PlantUML.Filter.OutputBlockSpec
, Text.Pandoc.PlantUML.Filter.TypesSpec
, Text.Pandoc.PlantUML.FilterSpec
Build-depends: hspec
, hspec-discover
, base >= 4 && < 5
, mtl
, pandoc-types
, SHA
, utf8-string
, bytestring
, process
, directory
, text
source-repository head
type: git
location: git://github.com/thriqon/pandoc-plantuml-diagrams