hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit beb6c03bc8f476b753e5f3e3bc7a4a2e3f8ad355
parent 4a3efea7efe59cd3de7d0eb352836ab395a2b6b3
Author: Bryan Klein <klein@thunderheadeng.com>
Date:   Wed,  1 Jul 2020 15:01:14 -0700

Update config.go to add two Asciidoctor extensions

Added two common extensions to allow my Hugo+Asciidoctor site to build with the new configuration.
Diffstat:
Mmarkup/asciidocext/asciidocext_config/config.go | 2++
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/markup/asciidocext/asciidocext_config/config.go b/markup/asciidocext/asciidocext_config/config.go
@@ -33,10 +33,12 @@ var (
 
 	AllowedExtensions = map[string]bool{
 		"asciidoctor-html5s":           true,
+		"asciidoctor-bibtex":           true,
 		"asciidoctor-diagram":          true,
 		"asciidoctor-interdoc-reftext": true,
 		"asciidoctor-katex":            true,
 		"asciidoctor-latex":            true,
+		"asciidoctor-mathematical":     true,
 		"asciidoctor-question":         true,
 		"asciidoctor-rouge":            true,
 	}