diff --git a/docs/en/next/site-config.html b/docs/en/next/site-config.html index 91c2b62108..ea0b30abfc 100644 --- a/docs/en/next/site-config.html +++ b/docs/en/next/site-config.html @@ -237,8 +237,18 @@ If unset, it is defaulted to docs.

Path to your web app manifest (e.g., manifest.json). This will add a <link> tag to <head> with rel as "manifest" and href as the provided path.

markdownOptions [object]

Override default Remarkable options that will be used to render markdown.

+
+

To manage syntax extensions, use the markdownPlugins field.

+

markdownPlugins [array]

An array of plugins to be loaded by Remarkable, the markdown parser and renderer used by Docusaurus. The plugin will receive a reference to the Remarkable instance, allowing custom parsing and rendering rules to be defined.

+

For example, if you want to enable superscript and subscript in your markdown that is rendered by Remarkable to HTML, you would do the following:

+
  markdownPlugins: [
+    function foo(md) {
+      md.inline.ruler.enable(['sub', 'sup']);
+    },
+  ],
+

noIndex [boolean]

Boolean. If true, Docusaurus will politely ask crawlers and search engines to avoid indexing your site. This is done with a header tag and so only applies to docs and pages. Will not attempt to hide static resources. This is a best effort request. Malicious crawlers can and will still index your site.

ogImage [string]

@@ -370,7 +380,7 @@ If unset, it is defaulted to docs.

module.exports = siteConfig; -
Last updated on 2019-5-17 by Hongarc
Pages and Styles