diff options
| author | 2015-05-30 22:41:54 -0400 | |
|---|---|---|
| committer | 2015-05-30 22:41:54 -0400 | |
| commit | 96d399fb52339551d0538ff7f0e629239df54883 (patch) | |
| tree | 9b494dd7c7c46a6a64355c29e8599877fa210fbf /plugins/asciidoc/conf.py.sample | |
Initial commit
Diffstat (limited to 'plugins/asciidoc/conf.py.sample')
| -rw-r--r-- | plugins/asciidoc/conf.py.sample | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/asciidoc/conf.py.sample b/plugins/asciidoc/conf.py.sample new file mode 100644 index 0000000..1dd5d3a --- /dev/null +++ b/plugins/asciidoc/conf.py.sample @@ -0,0 +1,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" |
