diff --git a/exampleSite/config/_default/params.toml b/exampleSite/config/_default/params.toml index 658f1b6c97..68ca3c3f1c 100644 --- a/exampleSite/config/_default/params.toml +++ b/exampleSite/config/_default/params.toml @@ -328,6 +328,34 @@ externalLinkTarget = "_blank" # not be servable from the file system. 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 # These options configure how Mermaid graphs are displayed. @@ -364,34 +392,6 @@ disableMermaid = true # This can be overridden in the page's frontmatter. 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 # These options configure how OpenAPI specifications are displayed.