From a4e8d574c25b71833cb155e9325b979b8e81c3e7 Mon Sep 17 00:00:00 2001 From: kushthedude Date: Thu, 23 Apr 2020 01:35:28 +0530 Subject: [PATCH 1/2] enh: Enabling last edited time & GitHub URL View Signed-off-by: kushthedude --- docs/siteConfig.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/siteConfig.js b/docs/siteConfig.js index 8ecebe7da..42ee660db 100644 --- a/docs/siteConfig.js +++ b/docs/siteConfig.js @@ -56,7 +56,7 @@ const siteConfig = { // URL for editing docs, usage example: editUrl + 'en/doc1.md'. // If this field is omitted, there will be no "Edit this Doc" button for each document. - editUrl: 'https://github.com/OpenRefine/OpenRefine/edit/master/docs/src/', + editUrl: 'https://github.com/OpenRefine/OpenRefine/blob/master/docs/src/', // On page navigation for the current documentation page. onPageNav: 'separate', @@ -69,6 +69,10 @@ const siteConfig = { // Expand/collapse the links and subcategories under categories. docsSideNavCollapsible: true, + // An option to enable the docs showing the author who last updated the doc. + enableUpdateTime: true, + + enableUpdateBy: true, // Show documentation's last contributor's name. // enableUpdateBy: true, From 98227ea60e5e5c51346701bb6169fea766694dec Mon Sep 17 00:00:00 2001 From: kushthedude Date: Thu, 23 Apr 2020 01:36:27 +0530 Subject: [PATCH 2/2] add comments Signed-off-by: kushthedude --- docs/siteConfig.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/siteConfig.js b/docs/siteConfig.js index 42ee660db..08c13595e 100644 --- a/docs/siteConfig.js +++ b/docs/siteConfig.js @@ -69,9 +69,11 @@ const siteConfig = { // Expand/collapse the links and subcategories under categories. docsSideNavCollapsible: true, - // An option to enable the docs showing the author who last updated the doc. + + // An option to enable the docs showing the user when last updated the doc. enableUpdateTime: true, + // An option to enable the docs showing the author who last updated the doc. enableUpdateBy: true, // Show documentation's last contributor's name.