From: Anthony Fok Date: Wed, 25 Mar 2015 02:27:06 +0000 (-0600) Subject: Add missing ".adoc" extension in handler_page.go X-Git-Tag: v0.14~164 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0921761e;p=brevno-suite%2Fhugo Add missing ".adoc" extension in handler_page.go Commit 358dcce supposedly added ".adoc" extension recognition for AsciiDoc, but one place was missed. Thanks to @sjfloat for reporting the bug! See discussions at #470. --- diff --git a/hugolib/handler_page.go b/hugolib/handler_page.go index 78045a40..ed254dcd 100644 --- a/hugolib/handler_page.go +++ b/hugolib/handler_page.go @@ -91,7 +91,7 @@ type asciidocHandler struct { basicPageHandler } -func (h asciidocHandler) Extensions() []string { return []string{"asciidoc", "ad"} } +func (h asciidocHandler) Extensions() []string { return []string{"asciidoc", "adoc", "ad"} } func (h asciidocHandler) PageConvert(p *Page, t tpl.Template) HandledResult { p.ProcessShortcodes(t)