summaryrefslogtreecommitdiffstats
path: root/plugins/asciidoc/conf.py.sample
diff options
context:
space:
mode:
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"