From 540f7da203566c56bdc20f77b26141842d5d64ab Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Thu, 25 Jun 2020 16:09:41 +0000 Subject: [PATCH] Deploy website Deploy website version based on d513dec521d4a66a74d42d33ec7b3b25cbb57f2d --- docs/en/next/site-config.html | 15 ++++++++++++++- docs/en/next/site-config/index.html | 15 ++++++++++++++- docs/en/next/versioning.html | 3 ++- docs/en/next/versioning/index.html | 3 ++- docs/fr/next/site-config.html | 13 +++++++++++++ docs/fr/next/site-config/index.html | 13 +++++++++++++ docs/fr/next/versioning.html | 1 + docs/fr/next/versioning/index.html | 1 + docs/ko/next/site-config.html | 13 +++++++++++++ docs/ko/next/site-config/index.html | 13 +++++++++++++ docs/ko/next/versioning.html | 1 + docs/ko/next/versioning/index.html | 1 + docs/pt-BR/next/site-config.html | 13 +++++++++++++ docs/pt-BR/next/site-config/index.html | 13 +++++++++++++ docs/pt-BR/next/versioning.html | 1 + docs/pt-BR/next/versioning/index.html | 1 + docs/ro/next/site-config.html | 13 +++++++++++++ docs/ro/next/site-config/index.html | 13 +++++++++++++ docs/ro/next/versioning.html | 1 + docs/ro/next/versioning/index.html | 1 + docs/ru/next/site-config.html | 13 +++++++++++++ docs/ru/next/site-config/index.html | 13 +++++++++++++ docs/ru/next/versioning.html | 1 + docs/ru/next/versioning/index.html | 1 + docs/zh-CN/next/site-config.html | 13 +++++++++++++ docs/zh-CN/next/site-config/index.html | 13 +++++++++++++ docs/zh-CN/next/versioning.html | 1 + docs/zh-CN/next/versioning/index.html | 1 + 28 files changed, 200 insertions(+), 4 deletions(-) diff --git a/docs/en/next/site-config.html b/docs/en/next/site-config.html index 002555b2fb..e3aedfb99b 100644 --- a/docs/en/next/site-config.html +++ b/docs/en/next/site-config.html @@ -157,6 +157,19 @@

defaultVersionShown [string]

The default version for the site to be shown. If this is not set, the latest version will be shown.

+

deletedDocs [object]

+

Even if you delete the main file for a documentation page and delete it from your sidebar, the page will still be created for every version and for the current version due to fallback functionality. This can lead to confusion if people find the documentation by searching and it appears to be something relevant to a particular version but actually is not.

+

To force removal of content beginning with a certain version (including for current/next), add a deletedDocs object to your config, where each key is a version and the value is an array of document IDs that should not be generated for that version and all later versions.

+

Example:

+
{
+  deletedDocs: {
+    "2.0.0": [
+      "tagging"
+    ]
+  }
+}
+
+

The version keys must match those in versions.json. Assuming the versions list in versions.json is ["3.0.0", "2.0.0", "1.1.0", "1.0.0"], the docs/1.0.0/tagging and docs/1.1.0/tagging URLs will work but docs/2.0.0/tagging, docs/3.0.0/tagging, and docs/tagging will not. The files and folders for those versions will not be generated during the build.

docsUrl [string]

The base URL for all docs file. Set this field to '' to remove the docs prefix of the documentation URL. If unset, it is defaulted to docs.

disableHeaderTitle [boolean]

@@ -388,7 +401,7 @@ module.exports = siteConfig; -
Last updated on 4/8/2020 by Reece Dunham
Pages and Styles