summaryrefslogtreecommitdiffstats
path: root/_config.yml
diff options
context:
space:
mode:
authorSimone Bortolin <simonebortolin@users.noreply.github.com>2022-08-09 11:45:45 +0200
committerSimone Bortolin <simonebortolin@users.noreply.github.com>2022-12-19 23:01:05 +0100
commit81c799839bb0d2f07674d54db4bdb2769162f03a (patch)
tree2863fe474aee3c27e057631e1169842a4584f4ab /_config.yml
parentUpdate ont-technicolor-afm0002.md (diff)
downloadhack-gpon.github.io-81c799839bb0d2f07674d54db4bdb2769162f03a.tar
hack-gpon.github.io-81c799839bb0d2f07674d54db4bdb2769162f03a.tar.gz
hack-gpon.github.io-81c799839bb0d2f07674d54db4bdb2769162f03a.tar.bz2
hack-gpon.github.io-81c799839bb0d2f07674d54db4bdb2769162f03a.tar.lz
hack-gpon.github.io-81c799839bb0d2f07674d54db4bdb2769162f03a.tar.xz
hack-gpon.github.io-81c799839bb0d2f07674d54db4bdb2769162f03a.tar.zst
hack-gpon.github.io-81c799839bb0d2f07674d54db4bdb2769162f03a.zip
Diffstat (limited to '_config.yml')
-rw-r--r--_config.yml59
1 files changed, 58 insertions, 1 deletions
diff --git a/_config.yml b/_config.yml
index 5bbf58c..f015238 100644
--- a/_config.yml
+++ b/_config.yml
@@ -57,4 +57,61 @@ gh_owner_name: hack-gpon
gh_repository_name: hack-gpon.github.io
whitelist:
- - jekyll-redirect-from \ No newline at end of file
+ - jekyll-redirect-from
+
+mermaid_enabled: true
+mermaid:
+ # Version of mermaid library
+ # Pick an available version from https://cdn.jsdelivr.net/npm/mermaid/
+ version: "9.1.3"
+ # Configured theme of mermaid diagrams
+ # Pick an avaiable theme from https://mermaid-js.github.io/mermaid/#/theming
+ theme: "default"
+ # Additional configuration available matching pattern as defined in https://mermaid-js.github.io/mermaid/#/./Setup.
+ # For example,
+ # logLevel: 'fatal',
+ # sequence:
+ # diagramMarginX: 50
+ # actorMargin: 50
+ # gantt:
+ # barGap: 4
+ # topPadding: 50
+
+############################################################
+# Site configuration for the WebP Generator Plugin
+# The values here represent the defaults if nothing is set
+webp:
+ enabled: true
+
+ # The quality of the webp conversion 0 to 100 (where 100 is least lossy)
+ quality: 80
+
+ # List of directories containing images to optimize, nested directories will only be checked if `nested` is true
+ # By default the generator will search for a folder called `/img` under the site root and process all jpg, png and tiff image files found there.
+ img_dir: ["/img","/assets/img/"]
+
+ # Whether to search in nested directories or not
+ nested: false
+
+ # add ".gif" to the format list to generate webp for animated gifs as well
+ formats: [".jpeg", ".jpg", ".png", ".tiff"]
+
+ # File extensions for animated gif files
+ gifs: [".gif"]
+
+ # Set to true to always regenerate existing webp files
+ regenerate: false
+
+ # Local path to the WebP utilities to use (relative or absolute)
+ # Omit or leave as nil to use the utilities shipped with the gem, override only to use your local install
+ # Eg : "/usr/local/bin/cwebp"
+ webp_path: nil
+
+ # List of files or directories to exclude
+ # e.g. custom or hand generated webp conversion files
+ exclude: []
+
+ # append '.webp' to filename after original extension rather than replacing it.
+ # Default transforms `image.png` to `image.webp`, while changing to true transforms `image.png` to `image.png.webp`
+ append_ext: false
+############################################################ \ No newline at end of file