mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
config: order shortcodes alphabetically #721
This commit is contained in:
parent
f6288edcf4
commit
c7dd2632a3
1 changed files with 28 additions and 28 deletions
|
@ -328,6 +328,34 @@ externalLinkTarget = "_blank"
|
||||||
# not be servable from the file system.
|
# not be servable from the file system.
|
||||||
disableExplicitIndexURLs = false
|
disableExplicitIndexURLs = false
|
||||||
|
|
||||||
|
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
# MathJax
|
||||||
|
# These options configure how math formulae are displayed.
|
||||||
|
|
||||||
|
# Initialization options for MathJax.
|
||||||
|
# Default: not set
|
||||||
|
# A JSON value. See the MathJaxdocumentation for possible parameter.
|
||||||
|
# This can be overridden in the page's frontmatter.
|
||||||
|
mathJaxInitialize = "{}"
|
||||||
|
|
||||||
|
# Only load MathJax if needed.
|
||||||
|
# Default: true
|
||||||
|
# If a Math shortcode is found, the option will be ignored and
|
||||||
|
# MathJax will be loaded regardlessly. The option is still useful in case you
|
||||||
|
# are using scripting to set up your graph. In this case no shortcode or
|
||||||
|
# codefence is involved and the library is not loaded by default. In this case
|
||||||
|
# you can set `disableMathJax=false` in your frontmatter to force the library to
|
||||||
|
# be loaded.
|
||||||
|
# This can be overridden in the page's frontmatter.
|
||||||
|
disableMathJax = true
|
||||||
|
|
||||||
|
# URL for external MathJax library.
|
||||||
|
# Default: not set
|
||||||
|
# Specifies the remote location of the MathJax library. By default the shipped
|
||||||
|
# version will be used.
|
||||||
|
# This can be overridden in the page's frontmatter.
|
||||||
|
customMathJaxURL = "" # "https://unpkg.com/mathjax/es5/tex-mml-chtml.js"
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
# Mermaid
|
# Mermaid
|
||||||
# These options configure how Mermaid graphs are displayed.
|
# These options configure how Mermaid graphs are displayed.
|
||||||
|
@ -364,34 +392,6 @@ disableMermaid = true
|
||||||
# This can be overridden in the page's frontmatter.
|
# This can be overridden in the page's frontmatter.
|
||||||
customMermaidURL = "" # "https://unpkg.com/mermaid/dist/mermaid.min.js"
|
customMermaidURL = "" # "https://unpkg.com/mermaid/dist/mermaid.min.js"
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
# MathJax
|
|
||||||
# These options configure how math formulae are displayed.
|
|
||||||
|
|
||||||
# Initialization options for MathJax.
|
|
||||||
# Default: not set
|
|
||||||
# A JSON value. See the MathJaxdocumentation for possible parameter.
|
|
||||||
# This can be overridden in the page's frontmatter.
|
|
||||||
mathJaxInitialize = "{}"
|
|
||||||
|
|
||||||
# Only load MathJax if needed.
|
|
||||||
# Default: true
|
|
||||||
# If a Math shortcode is found, the option will be ignored and
|
|
||||||
# MathJax will be loaded regardlessly. The option is still useful in case you
|
|
||||||
# are using scripting to set up your graph. In this case no shortcode or
|
|
||||||
# codefence is involved and the library is not loaded by default. In this case
|
|
||||||
# you can set `disableMathJax=false` in your frontmatter to force the library to
|
|
||||||
# be loaded.
|
|
||||||
# This can be overridden in the page's frontmatter.
|
|
||||||
disableMathJax = true
|
|
||||||
|
|
||||||
# URL for external MathJax library.
|
|
||||||
# Default: not set
|
|
||||||
# Specifies the remote location of the MathJax library. By default the shipped
|
|
||||||
# version will be used.
|
|
||||||
# This can be overridden in the page's frontmatter.
|
|
||||||
customMathJaxURL = "" # "https://unpkg.com/mathjax/es5/tex-mml-chtml.js"
|
|
||||||
|
|
||||||
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
# OpenApi
|
# OpenApi
|
||||||
# These options configure how OpenAPI specifications are displayed.
|
# These options configure how OpenAPI specifications are displayed.
|
||||||
|
|
Loading…
Reference in a new issue