blob: 1dd5d3aa66e9fccdcb309d06a7426f317625bfa7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# Add the asciidoc compiler to your COMPILERS dict.
COMPILERS["asciidoc"] = ('.asc',)
# Add asciidoc files to your POSTS, PAGES
POSTS = POSTS + (("posts/*.asc", "posts", "post.tmpl"),)
PAGES = PAGES + (("stories/*.asc", "posts", "post.tmpl"),)
# You can choose what command to use for processing.
# For example, you can replace asciidoc with asciidoctor
# Or use the full path to the program.
# ASCIIDOC_BINARY = "asciidoc"
|