summaryrefslogtreecommitdiffstats
path: root/plugins/asciidoc/conf.py.sample
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@ubuntu.com>2015-05-30 22:41:54 -0400
committerLibravatarUnit 193 <unit193@ubuntu.com>2015-05-30 22:41:54 -0400
commit96d399fb52339551d0538ff7f0e629239df54883 (patch)
tree9b494dd7c7c46a6a64355c29e8599877fa210fbf /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"