From 538ff88fb78aa2e54bef930cea05e99ad63350fd Mon Sep 17 00:00:00 2001 From: tejas bhuwania Date: Mon, 17 Feb 2020 04:54:36 +0530 Subject: [PATCH 01/10] add _site to ignore list --- src/Site.js | 3 ++- src/constants.js | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Site.js b/src/Site.js index ba5c40f70b..5bc2f3b43c 100644 --- a/src/Site.js +++ b/src/Site.js @@ -52,6 +52,7 @@ const { SITE_ASSET_FOLDER_NAME, SITE_CONFIG_NAME, SITE_DATA_NAME, + SITE_FOLDER_NAME, TEMP_FOLDER_NAME, TEMPLATE_SITE_ASSET_FOLDER_NAME, USER_VARIABLES_PATH, @@ -427,7 +428,7 @@ class Site { globPages.concat(walkSync(this.rootPath, { directories: false, globs: [addressableGlob.glob], - ignore: [CONFIG_FOLDER_NAME], + ignore: [CONFIG_FOLDER_NAME, SITE_FOLDER_NAME], }).map(globPath => ({ src: globPath, searchable: addressableGlob.searchable, diff --git a/src/constants.js b/src/constants.js index 984667811b..276ec9fd29 100644 --- a/src/constants.js +++ b/src/constants.js @@ -39,6 +39,7 @@ module.exports = { CONFIG_FOLDER_NAME: '_markbind', HEADING_INDEXING_LEVEL_DEFAULT: 3, SITE_ASSET_FOLDER_NAME: 'asset', + SITE_FOLDER_NAME: '_site', TEMP_FOLDER_NAME: '.temp', TEMPLATE_SITE_ASSET_FOLDER_NAME: 'markbind', From 52e1afac3808880e8e4980e3ad886749907191ca Mon Sep 17 00:00:00 2001 From: tejas bhuwania Date: Mon, 17 Feb 2020 06:14:30 +0530 Subject: [PATCH 02/10] update highlighted text bg color --- docs/css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/css/main.css b/docs/css/main.css index 8f21f99265..92caaa36ed 100644 --- a/docs/css/main.css +++ b/docs/css/main.css @@ -1,5 +1,5 @@ mark { - background-color: rgba(255, 231, 2, 0.15); + background-color: #FFFF00; border-radius: 5px; padding-top: 0; padding-bottom: 0; From 84ba6a6ba7096e3330e1d2bb072fd920c7c47682 Mon Sep 17 00:00:00 2001 From: tejas bhuwania Date: Wed, 25 Mar 2020 22:15:51 +0800 Subject: [PATCH 03/10] redirect pages to remove bug --- docs/devGuide/index.md | 4 +++- docs/userGuide/index.md | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/devGuide/index.md b/docs/devGuide/index.md index 447eb866bd..85c54c9cdb 100644 --- a/docs/devGuide/index.md +++ b/docs/devGuide/index.md @@ -1 +1,3 @@ - \ No newline at end of file + diff --git a/docs/userGuide/index.md b/docs/userGuide/index.md index 6d0f2c1ffd..5b6eadcd51 100644 --- a/docs/userGuide/index.md +++ b/docs/userGuide/index.md @@ -1 +1,3 @@ - \ No newline at end of file + From 15ab2f3eb4cb1887f448f15bc8b797a5cce93945 Mon Sep 17 00:00:00 2001 From: Tejas Bhuwania <35946746+Tejas2805@users.noreply.github.com> Date: Wed, 25 Mar 2020 22:58:43 +0800 Subject: [PATCH 04/10] Update index.md --- docs/userGuide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/userGuide/index.md b/docs/userGuide/index.md index 5b6eadcd51..511c9b8728 100644 --- a/docs/userGuide/index.md +++ b/docs/userGuide/index.md @@ -1,3 +1,3 @@ From 0b680a7391d1162925cdf19d4fc973e1ab1f92e7 Mon Sep 17 00:00:00 2001 From: Tejas Bhuwania <35946746+Tejas2805@users.noreply.github.com> Date: Thu, 26 Mar 2020 05:29:15 +0800 Subject: [PATCH 05/10] Update index.md --- docs/devGuide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/devGuide/index.md b/docs/devGuide/index.md index 85c54c9cdb..d3cd778eee 100644 --- a/docs/devGuide/index.md +++ b/docs/devGuide/index.md @@ -1,3 +1,3 @@ From 3b3529378a894896245f37270307582db101c2e2 Mon Sep 17 00:00:00 2001 From: Tejas Bhuwania <35946746+Tejas2805@users.noreply.github.com> Date: Thu, 26 Mar 2020 05:32:52 +0800 Subject: [PATCH 06/10] Update index.md --- docs/devGuide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/devGuide/index.md b/docs/devGuide/index.md index d3cd778eee..53ac484615 100644 --- a/docs/devGuide/index.md +++ b/docs/devGuide/index.md @@ -1,3 +1,3 @@ From e52d38aca058e62595ef87330534ab77cb529d0c Mon Sep 17 00:00:00 2001 From: Tejas Bhuwania <35946746+Tejas2805@users.noreply.github.com> Date: Thu, 26 Mar 2020 22:16:24 +0800 Subject: [PATCH 07/10] Update index.md --- docs/userGuide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/userGuide/index.md b/docs/userGuide/index.md index 511c9b8728..e65b75c64a 100644 --- a/docs/userGuide/index.md +++ b/docs/userGuide/index.md @@ -1,3 +1,3 @@ From 8a167285b0c80b492968d992f05229883eee944a Mon Sep 17 00:00:00 2001 From: Tejas Bhuwania <35946746+Tejas2805@users.noreply.github.com> Date: Thu, 26 Mar 2020 22:16:39 +0800 Subject: [PATCH 08/10] Update index.md --- docs/devGuide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/devGuide/index.md b/docs/devGuide/index.md index 53ac484615..a1d1c4c1d6 100644 --- a/docs/devGuide/index.md +++ b/docs/devGuide/index.md @@ -1,3 +1,3 @@ From 4659d847e1692b195db85be464da54b0033e7ee4 Mon Sep 17 00:00:00 2001 From: Tejas Bhuwania <35946746+Tejas2805@users.noreply.github.com> Date: Fri, 27 Mar 2020 03:01:16 +0800 Subject: [PATCH 09/10] Update index.md --- docs/userGuide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/userGuide/index.md b/docs/userGuide/index.md index e65b75c64a..d5146b701f 100644 --- a/docs/userGuide/index.md +++ b/docs/userGuide/index.md @@ -1,3 +1,3 @@ From e457399f59536bed3e0728a72a7bd96300848c5f Mon Sep 17 00:00:00 2001 From: Tejas Bhuwania <35946746+Tejas2805@users.noreply.github.com> Date: Sat, 28 Mar 2020 05:46:09 +0800 Subject: [PATCH 10/10] Update index.md --- docs/userGuide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/userGuide/index.md b/docs/userGuide/index.md index d5146b701f..cc575b71b0 100644 --- a/docs/userGuide/index.md +++ b/docs/userGuide/index.md @@ -1,3 +1,3 @@