-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadp-github.asd
31 lines (30 loc) · 1.55 KB
/
adp-github.asd
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
(defsystem "adp-github"
:author "Héctor Galbis Sanchis"
:description "ADP extension to generate github markdown files."
:license "MIT"
:depends-on ("alexandria" "closer-mop" "adp" "trivial-arguments" "hyperspec" "cl-ppcre")
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "pprint-dispatch")
(:file "tags")
(:file "adp-github")
(:file "system")
(:file "files")
(:file "elements")
(:module "adp-elements"
:components ((:file "output-file")
(:file "value")
(:file "title")
(:file "text")
(:file "reference")
(:file "table")
(:file "list")
(:file "toc")
(:file "image")
(:file "link")
(:file "quote")
(:file "code-block")
(:file "example")
(:file "description")
(:file "glossary")))))))