summaryrefslogtreecommitdiffstats
path: root/plugins/asciidoc/conf.py.sample
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2021-12-04 22:39:11 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2021-12-04 22:39:11 -0500
commitfd4d5145ab7a29c62d97c7aaec0ec70cca7a9738 (patch)
treeb63c6548647f206d4fde4ed0b94c734a4f86bdad /plugins/asciidoc/conf.py.sample
parent4367aec103dc55822f72f7e2c73ed9e3fd4c669b (diff)
Update from nikola 8.x template, update asciidoc plugin.
Diffstat (limited to 'plugins/asciidoc/conf.py.sample')
-rw-r--r--plugins/asciidoc/conf.py.sample7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/asciidoc/conf.py.sample b/plugins/asciidoc/conf.py.sample
index 1dd5d3a..b8fda52 100644
--- a/plugins/asciidoc/conf.py.sample
+++ b/plugins/asciidoc/conf.py.sample
@@ -1,11 +1,14 @@
# Add the asciidoc compiler to your COMPILERS dict.
-COMPILERS["asciidoc"] = ('.asc',)
+COMPILERS["asciidoc"] = ['.asc']
# Add asciidoc files to your POSTS, PAGES
POSTS = POSTS + (("posts/*.asc", "posts", "post.tmpl"),)
-PAGES = PAGES + (("stories/*.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 = ""