Enhace option's case for Jekyll configuration (#8992)

Merge pull request 8992
This commit is contained in:
Emily Grace Seville 2022-03-11 20:00:27 +10:00 committed by GitHub
parent 62d9c8c30c
commit f48d500586
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 18 deletions

View File

@ -55,7 +55,7 @@
flag: --lsi flag: --lsi
- name: Limit Posts - name: Limit posts
description: Limit the number of posts to parse and publish. description: Limit the number of posts to parse and publish.
option: "limit_posts: NUM" option: "limit_posts: NUM"
flag: --limit_posts NUM flag: --limit_posts NUM
@ -72,12 +72,12 @@
flag: -V, --verbose flag: -V, --verbose
- name: Silence Output - name: Silence output
description: Silence the normal output from Jekyll during a build. description: Silence the normal output from Jekyll during a build.
flag: -q, --quiet flag: -q, --quiet
- name: Log Level - name: Log level
description: Specify a log level among debug, info, warn, or error. description: Specify a log level among debug, info, warn, or error.
flag: JEKYLL_LOG_LEVEL=info flag: JEKYLL_LOG_LEVEL=info
@ -93,7 +93,7 @@
flag: -I, --incremental flag: -I, --incremental
- name: Disable Bundle Require - name: Disable bundle require
description: Disables the need to require gems in `:jekyll_plugins` Gemfile description: Disables the need to require gems in `:jekyll_plugins` Gemfile
flag: JEKYLL_NO_BUNDLER_REQUIRE=true flag: JEKYLL_NO_BUNDLER_REQUIRE=true
@ -104,7 +104,7 @@
flag: --profile flag: --profile
- name: Strict Front Matter - name: Strict front matter
description: Cause a build to fail if there is a YAML syntax error in a page's front matter. description: Cause a build to fail if there is a YAML syntax error in a page's front matter.
option: "strict_front_matter: BOOL" option: "strict_front_matter: BOOL"
flag: --strict_front_matter flag: --strict_front_matter

View File

@ -1,10 +1,10 @@
- name: Site Source - name: Site source
description: Change the directory where Jekyll will read files description: Change the directory where Jekyll will read files
option: "source: DIR" option: "source: DIR"
flag: -s, --source DIR flag: -s, --source DIR
- name: Site Destination - name: Site destination
description: Change the directory where Jekyll will write files description: Change the directory where Jekyll will write files
option: "destination: DIR" option: "destination: DIR"
flag: -d, --destination DIR flag: -d, --destination DIR
@ -17,7 +17,7 @@
flag: --safe flag: --safe
- name: Disable Disk Cache - name: Disable disk cache
version-badge: 4.1.0 version-badge: 4.1.0
description: >- description: >-
Disable caching of content to disk in order to skip creating a <code>.jekyll-cache</code> or similar directory at Disable caching of content to disk in order to skip creating a <code>.jekyll-cache</code> or similar directory at
@ -57,7 +57,7 @@
option: "keep_files: [DIR, FILE, ...]" option: "keep_files: [DIR, FILE, ...]"
- name: Time Zone - name: Time zone
description: >- description: >-
Set the time zone for site generation. This sets the <code>TZ</code> environment variable, which Ruby uses to handle Set the time zone for site generation. This sets the <code>TZ</code> environment variable, which Ruby uses to handle
time and date creation and manipulation. Any entry from the time and date creation and manipulation. Any entry from the

View File

@ -1,28 +1,28 @@
- name: Local Server Port - name: Local server port
description: Listen on the given port. The default is `4000`. description: Listen on the given port. The default is `4000`.
option: "port: PORT" option: "port: PORT"
flag: "-P, --port PORT" flag: "-P, --port PORT"
- name: Local Server Hostname - name: Local server hostname
description: Listen at the given hostname. The default is `localhost`. description: Listen at the given hostname. The default is `localhost`.
option: "host: HOSTNAME" option: "host: HOSTNAME"
flag: "-H, --host HOSTNAME" flag: "-H, --host HOSTNAME"
- name: Live Reload - name: Live reload
description: Reload a page automatically on the browser when its content is edited. description: Reload a page automatically on the browser when its content is edited.
option: "livereload: BOOL" option: "livereload: BOOL"
flag: "-l, --livereload" flag: "-l, --livereload"
- name: Live Reload Ignore - name: Live reload ignore
description: File glob patterns for LiveReload to ignore. description: File glob patterns for LiveReload to ignore.
option: "livereload_ignore: [ GLOB1,... ]" option: "livereload_ignore: [ GLOB1,... ]"
flag: "--livereload-ignore GLOB1[,GLOB2,...]" flag: "--livereload-ignore GLOB1[,GLOB2,...]"
- name: Live Reload Min/Max Delay - name: Live reload min/max delay
description: Minimum/Maximum delay before automatically reloading page. description: Minimum/Maximum delay before automatically reloading page.
options: options:
- "livereload_min_delay: SECONDS" - "livereload_min_delay: SECONDS"
@ -32,7 +32,7 @@
- "--livereload-max-delay SECONDS" - "--livereload-max-delay SECONDS"
- name: Live Reload Port - name: Live reload port
description: Port for LiveReload to listen on. description: Port for LiveReload to listen on.
flag: "--livereload-port PORT" flag: "--livereload-port PORT"
@ -55,17 +55,17 @@
flag: "--skip-initial-build" flag: "--skip-initial-build"
- name: Show Directory Listing - name: Show directory listing
description: Show a directory listing instead of loading your index file. description: Show a directory listing instead of loading your index file.
option: "show_dir_listing: BOOL" option: "show_dir_listing: BOOL"
flag: "--show-dir-listing" flag: "--show-dir-listing"
- name: X.509 (SSL) Private Key - name: X.509 (SSL) private key
description: "SSL Private Key, stored or symlinked in the site source." description: "SSL Private Key, stored or symlinked in the site source."
flag: "--ssl-key" flag: "--ssl-key"
- name: X.509 (SSL) Certificate - name: X.509 (SSL) certificate
description: "SSL Public certificate, stored or symlinked in the site source." description: "SSL Public certificate, stored or symlinked in the site source."
flag: "--ssl-cert" flag: "--ssl-cert"