blob: b8fda52f0f38ba49056ec4f165c321050a1e668f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 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 + (("pages/*.asc", "pages", "page.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"
# Specify options to the asciidoc compiler (as a string).
# ASCIIDOC_OPTIONS = ""
|