From beb6c03bc8f476b753e5f3e3bc7a4a2e3f8ad355 Mon Sep 17 00:00:00 2001 From: Bryan Klein Date: Wed, 1 Jul 2020 15:01:14 -0700 Subject: [PATCH] Update config.go to add two Asciidoctor extensions Added two common extensions to allow my Hugo+Asciidoctor site to build with the new configuration. --- markup/asciidocext/asciidocext_config/config.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/markup/asciidocext/asciidocext_config/config.go b/markup/asciidocext/asciidocext_config/config.go index 8cc3e79e6..aef998b51 100644 --- 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, }