summaryrefslogtreecommitdiff
path: root/_config.yml.dist
diff options
context:
space:
mode:
authorYehonal <yehonal.azeroth@gmail.com>2018-12-17 16:16:43 +0100
committerYehonal <yehonal.azeroth@gmail.com>2018-12-17 21:00:26 +0100
commit4feaace4929a07cc34c4bcd6c57334be2d95ec31 (patch)
tree8b2b272a40a9c002d8d0c18831fd95bd03a246e3 /_config.yml.dist
parent1ffe35e8bed26b833bf873f6062a548aa26e2598 (diff)
downloadwiki-4feaace4929a07cc34c4bcd6c57334be2d95ec31.tar.gz
wiki-4feaace4929a07cc34c4bcd6c57334be2d95ec31.tar.bz2
wiki-4feaace4929a07cc34c4bcd6c57334be2d95ec31.zip
Implemented js search and SEO optimizations
Diffstat (limited to '_config.yml.dist')
-rw-r--r--_config.yml.dist174
1 files changed, 91 insertions, 83 deletions
diff --git a/_config.yml.dist b/_config.yml.dist
index f1bf919..1d11648 100644
--- a/_config.yml.dist
+++ b/_config.yml.dist
@@ -1,83 +1,91 @@
-# (string) Title of your wiki
-title:
-# (string) Description of your wiki
-description:
-# (boolean) Enable/disable download buttons in sidebar
-show_downloads: true
-# (string) Specify branch rendered by gitpages allowing wiki tool buttons to work
-git_branch: "master"
-# (string) Url of logo image, it can be full, absolute or relative.
-logo_url:
-# (string) The UA-XXXXX-Y code from google analytic to enable GA on your wiki
-google_analytics:
-# (string) folder where wiki pages are stored, it's needed for tool buttons
-wiki_folder: wiki
-# (boolean) if you're using github wiki as submodule then this config
-# must be enabled to allow tool buttons to work properly
-use_github_wiki: false
-# (boolean) Enable "Edit with Prose.io" button in tools, it's a 3rd party
-# service to edit github markdown pages easily
-use_prose_io: true
-# Setting google custom search engine token will enable the
-# cse search bar (https://cse.google.it/cse/) instead of default
-# one based on github search that could not work on forks
-google_cse_token:
-
-#
-# Jekyll configurations
-#
-
-# You can customize it changing default layout for all pages
-# More info: https://jekyllrb.com/docs/configuration/
-#
-# git-wiki includes some internal themes that you can choose
-# check _layouts folder
-#
-defaults:
- -
- scope:
- path: "" # an empty string here means all files in the project
- values:
- layout: "git-wiki-default"
- -
- scope:
- path: ""
- type: "pages"
- values:
- layout: "git-wiki-default"
-sass:
- style: compressed
-plugins:
- - jekyll-sitemap
- - jekyll-mentions
- - jemoji
- - jekyll-redirect-from
- - jekyll-feed
-
-
-#
-# INCLUDING HOOKS
-# They are optional, change them only if you need
-# Check wiki documentation to learn how they work
-#
-
-inc_before_toc :
-inc_after_toc :
-inc_before_content :
-inc_after_content :
-inc_before_footer :
-inc_after_footer :
-inc_before_head :
-inc_after_head :
-inc_before_meta :
-inc_after_meta :
-inc_before_scripts :
-inc_after_scripts :
-inc_before_styles :
-inc_after_styles :
-inc_before_header :
-inc_after_header :
-inc_before_tail :
-inc_after_tail :
-inc_before_tools :
-inc_after_tools :
+# (string) Title of your wiki
+title:
+# (string) Description of your wiki
+description:
+# (boolean) Enable/disable download buttons in sidebar
+show_downloads: true
+# (string) Specify branch rendered by gitpages allowing wiki tool buttons to work
+git_branch: "master"
+# (string) Url of logo image, it can be full, absolute or relative.
+logo_url:
+# (string) The UA-XXXXX-Y code from google analytic to enable GA on your wiki
+google_analytics:
+# (string) folder where wiki pages are stored, it's needed for tool buttons
+wiki_folder: wiki
+# (boolean) if you're using github wiki as submodule then this config
+# must be enabled to allow tool buttons to work properly
+use_github_wiki: false
+# (boolean) Enable "Edit with Prose.io" button in tools, it's a 3rd party
+# service to edit github markdown pages easily
+use_prose_io: true
+# Select search_engine component from:
+# - js: it uses a built in javascript component that uses generated sitemap_full.xml to search inside your wiki
+# - github : it uses internal github repository search
+# - google : it uses cse search bar, you need to configure google_cse_token
+#
+search_engine : "js"
+# Setting google custom search engine for google
+# cse search bar (https://cse.google.it/cse/)
+google_cse_token:
+
+#
+# Jekyll configurations
+#
+
+# You can customize it changing default layout for all pages
+# More info: https://jekyllrb.com/docs/configuration/
+#
+# git-wiki includes some internal themes that you can choose
+# check _layouts folder
+#
+defaults:
+ -
+ scope:
+ path: "" # an empty string here means all files in the project
+ values:
+ layout: "git-wiki-default"
+ -
+ scope:
+ path: ""
+ type: "pages"
+ values:
+ layout: "git-wiki-default"
+sass:
+ style: compressed
+plugins:
+ - jekyll-feed
+ - jekyll-redirect-from
+ - jekyll-seo-tag
+ - jekyll-sitemap
+ - jekyll-avatar
+ - jemoji
+ - jekyll-mentions
+ - jekyll-include-cache
+
+
+#
+# INCLUDING HOOKS
+# They are optional, change them only if you need
+# Check wiki documentation to learn how they work
+#
+
+inc_before_toc :
+inc_after_toc :
+inc_before_content :
+inc_after_content :
+inc_before_footer :
+inc_after_footer :
+inc_before_head :
+inc_after_head :
+inc_before_meta :
+inc_after_meta :
+inc_before_scripts :
+inc_after_scripts :
+inc_before_styles :
+inc_after_styles :
+inc_before_header :
+inc_after_header :
+inc_before_tail :
+inc_after_tail :
+inc_before_tools :
+inc_after_tools :