Skip to content

Commit c0837fe

Browse files
committedJan 19, 2018
Fix #253 -- fix asciidoc config sample copy-paste bug
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 64bc120 commit c0837fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎v7/asciidoc/conf.py.sample

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ COMPILERS["asciidoc"] = ('.asc',)
33

44
# Add asciidoc files to your POSTS, PAGES
55
POSTS = POSTS + (("posts/*.asc", "posts", "post.tmpl"),)
6-
PAGES = PAGES + (("stories/*.asc", "posts", "post.tmpl"),)
6+
PAGES = PAGES + (("pages/*.asc", "pages", "page.tmpl"),)
77

88
# You can choose what command to use for processing.
99
# For example, you can replace asciidoc with asciidoctor

‎v8/asciidoc/conf.py.sample

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ COMPILERS["asciidoc"] = ('.asc',)
33

44
# Add asciidoc files to your POSTS, PAGES
55
POSTS = POSTS + (("posts/*.asc", "posts", "post.tmpl"),)
6-
PAGES = PAGES + (("stories/*.asc", "posts", "post.tmpl"),)
6+
PAGES = PAGES + (("pages/*.asc", "pages", "page.tmpl"),)
77

88
# You can choose what command to use for processing.
99
# For example, you can replace asciidoc with asciidoctor

0 commit comments

Comments
 (0)
Please sign in to comment.