Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/markup
diff options
context:
space:
mode:
authorBryan Klein <klein@thunderheadeng.com>2020-07-02 01:01:14 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-07-02 08:57:43 +0300
commitbeb6c03bc8f476b753e5f3e3bc7a4a2e3f8ad355 (patch)
tree24aef797eb0f12794cf2b1a3b99a68fb936fa203 /markup
parent4a3efea7efe59cd3de7d0eb352836ab395a2b6b3 (diff)
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 (limited to 'markup')
-rw-r--r--markup/asciidocext/asciidocext_config/config.go2
1 files changed, 2 insertions, 0 deletions
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,
}