From 1bedc132d59d7362d15daf4ef09efd7087760c97 Mon Sep 17 00:00:00 2001 From: Yehonal Date: Sun, 24 Feb 2019 17:24:35 +0100 Subject: Syntax highlighter by default --- _config.yml.dist | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '_config.yml.dist') diff --git a/_config.yml.dist b/_config.yml.dist index ce5ed16..a42492f 100644 --- a/_config.yml.dist +++ b/_config.yml.dist @@ -53,6 +53,12 @@ google_cse_token: # git-wiki includes some internal themes that you can choose # check _layouts folder # +markdown: kramdown +highlighter: rouge +kramdown: + input: GFM + syntax_highlighter: rouge + defaults: - scope: -- cgit From 35c737fc1436470b5e62f9f5cd6bb1d6878dfc6c Mon Sep 17 00:00:00 2001 From: Yehonal Date: Wed, 24 Apr 2019 14:39:50 +0200 Subject: Implemented service config and fixed action buttons --- _config.yml.dist | 2 ++ 1 file changed, 2 insertions(+) (limited to '_config.yml.dist') diff --git a/_config.yml.dist b/_config.yml.dist index a42492f..f031616 100644 --- a/_config.yml.dist +++ b/_config.yml.dist @@ -18,6 +18,8 @@ paginate_path: "/blog/page:num" permalink: /blog/posts/:year/:month/:day/:title:output_ext # (boolean) Enable/disable download buttons in sidebar show_downloads: true +# (string) specify git-wiki host. (github or gitlab) +service: "gitlab" # (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. -- cgit From 8c447f9f53c9630d525b1d1cdaf80038c875d944 Mon Sep 17 00:00:00 2001 From: Yehonal Date: Fri, 30 Aug 2019 15:44:42 +0200 Subject: Use github service --- _config.yml.dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '_config.yml.dist') diff --git a/_config.yml.dist b/_config.yml.dist index f031616..3b5f672 100644 --- a/_config.yml.dist +++ b/_config.yml.dist @@ -19,7 +19,7 @@ permalink: /blog/posts/:year/:month/:day/:title:output_ext # (boolean) Enable/disable download buttons in sidebar show_downloads: true # (string) specify git-wiki host. (github or gitlab) -service: "gitlab" +service: "github" # (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. -- cgit From 28c72513f12c7361a75e76b3cb0672fada494b19 Mon Sep 17 00:00:00 2001 From: Takuma Ishikawa Date: Mon, 6 Jan 2020 19:32:27 +0900 Subject: rename *.dist files (#79) --- _config.yml.dist | 134 ------------------------------------------------------- 1 file changed, 134 deletions(-) delete mode 100644 _config.yml.dist (limited to '_config.yml.dist') diff --git a/_config.yml.dist b/_config.yml.dist deleted file mode 100644 index 3b5f672..0000000 --- a/_config.yml.dist +++ /dev/null @@ -1,134 +0,0 @@ -# (string) Title of your wiki -title: -# (string) Description of your wiki -description: -# (boolean) Enable/disable wiki page list in sidebar -show_wiki_pages: true -# (integer) Maximum number of wiki page to shown in sidebar -show_wiki_pages_limit: 10 -# (boolean) Enable/disable blog feature -blog_feature: true -# (boolean) Enable/disable wiki posts list in sidebar (needs blog_feature enabled) -show_wiki_posts: true -# (integer) Maximum number of wiki posts to shown in sidebar -show_wiki_posts_limit: 10 -# from jekyll (read jekyll doc) -paginate: 5 -paginate_path: "/blog/page:num" -permalink: /blog/posts/:year/:month/:day/:title:output_ext -# (boolean) Enable/disable download buttons in sidebar -show_downloads: true -# (string) specify git-wiki host. (github or gitlab) -service: "github" -# (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 js object -# - js_rss: it uses a built in javascript component that uses generated sitemap_full.xml to search inside your wiki with lunr library (slow and experimental) -# - 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 -# -markdown: kramdown -highlighter: rouge -kramdown: - input: GFM - syntax_highlighter: rouge - -defaults: - - - scope: - path: "wiki" - values: - permalink: /:basename - - - 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" - - - scope: - path: "" - type: "posts" - values: - layout: "git-wiki-post" - - - scope: - path: blog - values: - layout: "git-wiki-blog" -sass: - style: compressed -plugins: - - jekyll-feed - - jekyll-redirect-from - - jekyll-seo-tag - - jekyll-sitemap - - jekyll-avatar - - jemoji - - jekyll-mentions - - -# -# 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 : - -inc_before_page_list : -inc_after_page_list : -inc_before_post_list : -inc_after_post_list : -- cgit