From 72e0345ea692c6b641b8371110d7d0f3536341ba Mon Sep 17 00:00:00 2001 From: Matheson Steplock Date: Sun, 4 Oct 2020 20:05:29 -0400 Subject: [PATCH] Change documentation from frontmatter redirects to redirects file (#667) --- docs/documenting/standards.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/documenting/standards.md b/docs/documenting/standards.md index c67aabc5..9592dc87 100644 --- a/docs/documenting/standards.md +++ b/docs/documenting/standards.md @@ -66,12 +66,12 @@ some_key: ## Renaming Pages -It can happen that an integration or platform is renamed, in this case the documentation needs to be updated as well. If you rename a page, add `redirect_from:` to the file header and let it point to the old location/name of the page. Please consider to add details, like release number or old integration/platform name, to the page in a [note](/documenting/create-page.md/#html). +It can happen that an integration or platform is renamed, in this case the documentation needs to be updated as well. If you rename a page, add an entry to the `_redirects` file as shown below. Please consider to add details, like release number or old integration/platform name, to the page in a [note](/documenting/create-page.md/#html). ```text --- ... -redirect_from: /getting-started/android/ +/getting-started/scripts /docs/scripts --- ```