-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathunlit.cabal
44 lines (40 loc) · 1.84 KB
/
unlit.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
name: unlit
version: 0.4.0.1
synopsis: Tool to convert literate code between styles or to code.
description: Tool to convert literate code between styles or to code.
Usage:
.
> unlit
> -f STYLE_NAME --from=STYLE_NAME Source style (all, bird, haskell, latex, markdown, tildefence, backtickfence)
> -t STYLE_NAME --to=STYLE_NAME Target style (bird, latex, tildefence, backtickfence, code)
> -i FILE --input=FILE Input file (optional)
> -o FILE --output=FILE Output file (optional)
> -l LANGUAGE --language=LANGUAGE Programming language (restrict fenced code blocks)
> -h --help Show help
> -v --version Show version
.
license: BSD3
license-file: LICENSE
author: Wen Kokke
maintainer: wen.kokke@gmail.com
copyright: 2014 (c) Wen Kokke
category: Language
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/wenkokke/unlit
library
exposed-modules: Unlit.Text, Unlit.String
hs-source-dirs: src
other-extensions: OverloadedStrings
ghc-options: -Wall -fwarn-incomplete-patterns
build-depends: base >= 4.7 && < 5, directory, text
default-language: Haskell2010
executable unlit
main-is: Main.hs
hs-source-dirs: exe
other-extensions: OverloadedStrings
ghc-options: -Wall -fwarn-incomplete-patterns
build-depends: base >= 4.7 && < 5, directory, text, unlit
default-language: Haskell2010