summaryrefslogtreecommitdiffstats
path: root/plugins/asciidoc/conf.py.sample
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@ubuntu.com>2015-05-19 14:53:18 -0400
committerLibravatarUnit 193 <unit193@ubuntu.com>2015-05-19 14:53:18 -0400
commit9a14f4e1864f49a2b8780e403f966fe7e7e05f1f (patch)
tree8852213fa2fbd8d561aec66c74204632aeb18f16 /plugins/asciidoc/conf.py.sample
Initial commit
Diffstat (limited to 'plugins/asciidoc/conf.py.sample')
-rw-r--r--plugins/asciidoc/conf.py.sample11
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"