Add missing ".adoc" extension in handler_page.go
authorAnthony Fok <foka@debian.org>
Wed, 25 Mar 2015 02:27:06 +0000 (20:27 -0600)
committerAnthony Fok <foka@debian.org>
Wed, 25 Mar 2015 02:27:06 +0000 (20:27 -0600)
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.

hugolib/handler_page.go

index 78045a40e96ab445e4af1b457a031e6d19f28a12..ed254dcdd628856a14fac6a4b7bbc598235b2f61 100644 (file)
@@ -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)