From ca8cdae117881947e4bc97466bd87a682ee892ff Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Fri, 7 Jun 2019 20:47:05 +0000 Subject: [PATCH] Deploy website Deploy website version based on b2fe2a65c8885cb44d1f4c1f00bf55b620087c8c --- docs/en/next/site-config.html | 12 +++++++++++- docs/en/next/site-config/index.html | 12 +++++++++++- docs/es-ES/next/site-config.html | 10 ++++++++++ docs/es-ES/next/site-config/index.html | 10 ++++++++++ docs/ro/next/site-config.html | 10 ++++++++++ docs/ro/next/site-config/index.html | 10 ++++++++++ docs/tr/next/site-config.html | 10 ++++++++++ docs/tr/next/site-config/index.html | 10 ++++++++++ docs/zh-CN/next/site-config.html | 10 ++++++++++ docs/zh-CN/next/site-config/index.html | 10 ++++++++++ 10 files changed, 102 insertions(+), 2 deletions(-) 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