Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix #253 -- fix asciidoc config sample copy-paste bug
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Jan 19, 2018
1 parent 64bc120 commit c0837fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion v7/asciidoc/conf.py.sample
Expand Up @@ -3,7 +3,7 @@ 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
Expand Down
2 changes: 1 addition & 1 deletion v8/asciidoc/conf.py.sample
Expand Up @@ -3,7 +3,7 @@ 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
Expand Down

0 comments on commit c0837fe

Please sign in to comment.