From 0cecf4e43f224d6605779410b892a370cc4f404e Mon Sep 17 00:00:00 2001 From: Jan Piotrowski Date: Sat, 5 Aug 2017 17:27:02 +0200 Subject: [PATCH 1/2] add trailing slash to navigation items fixes the problem that each navigation item first has to redirected to the version with trailing slash closes https://github.com/ionic-team/ionic-site/issues/1223 --- scripts/docs/processors/jekyll.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/docs/processors/jekyll.js b/scripts/docs/processors/jekyll.js index edf9ba9ee..12bf88df4 100644 --- a/scripts/docs/processors/jekyll.js +++ b/scripts/docs/processors/jekyll.js @@ -22,6 +22,7 @@ module.exports = function jekyll(renderDocsProcessor) { doc.URL = doc.outputPath.replace('docs//', 'docs/') .replace('/index.md', '') .replace('content/', ''); + doc.URL = doc.URL+'/'; // add trailing slash }); const betaDocs = []; From 4e0673c8e9187978c0d733f56fa531f6159579f3 Mon Sep 17 00:00:00 2001 From: Jan Piotrowski Date: Sat, 5 Aug 2017 17:37:16 +0200 Subject: [PATCH 2/2] only add trailing slash on plugin pages fixes that the trailing slash would have been added to the root and browser-usage.html as well --- scripts/docs/processors/jekyll.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/docs/processors/jekyll.js b/scripts/docs/processors/jekyll.js index 12bf88df4..aea994359 100644 --- a/scripts/docs/processors/jekyll.js +++ b/scripts/docs/processors/jekyll.js @@ -22,7 +22,10 @@ module.exports = function jekyll(renderDocsProcessor) { doc.URL = doc.outputPath.replace('docs//', 'docs/') .replace('/index.md', '') .replace('content/', ''); - doc.URL = doc.URL+'/'; // add trailing slash + // add trailing slash to plugin pages + if(!doc.URL.endsWith("/") && !doc.URL.endsWith(".html")) { + doc.URL = doc.URL+'/'; + } }); const betaDocs = [];