disable spellchecker for 'highlight' shortcodes

This commit is contained in:
Robert Kaussow 2020-06-07 16:54:30 +02:00
parent 04d9b929fd
commit 450e111e18
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
4 changed files with 24 additions and 13 deletions

View File

@ -1,15 +1,10 @@
([a-zA-Z0-9]+[_=])+\S+
@\S+
Autostop
CLI CLI
Codecov Codecov
Kaussow Kaussow
PyPI PyPI
YAML YAML
gc
sudo
xoxys xoxys
toc
entrypoint
SELinux SELinux
dateparser dateparser
Autostop
entrypoint

View File

@ -2,7 +2,9 @@
title: Configuration title: Configuration
--- ---
<!-- spellchecker-disable -->
{{< toc >}} {{< toc >}}
<!-- spellchecker-enable -->
_docker-tidy_ comes with default settings which should be sufficient for most users to start, but you can adjust most settings to your needs. _docker-tidy_ comes with default settings which should be sufficient for most users to start, but you can adjust most settings to your needs.
@ -18,6 +20,7 @@ Changes can be made on different locations which will be processed in the follow
<!-- prettier-ignore-start --> <!-- prettier-ignore-start -->
<!-- markdownlint-disable --> <!-- markdownlint-disable -->
<!-- spellchecker-disable -->
{{< highlight YAML "linenos=table" >}} {{< highlight YAML "linenos=table" >}}
--- ---
# don't do anything # don't do anything
@ -41,13 +44,15 @@ stop:
max_run_time: max_run_time:
prefix: [] prefix: []
{{< /highlight >}} {{< /highlight >}}
<!-- markdownlint-enable --> <!-- spellchecker-enable -->
<!-- markdownlint-restore -->
<!-- prettier-ignore-end --> <!-- prettier-ignore-end -->
## Environment Variables ## Environment Variables
<!-- prettier-ignore-start --> <!-- prettier-ignore-start -->
<!-- markdownlint-disable --> <!-- markdownlint-disable -->
<!-- spellchecker-disable -->
{{< highlight Shell "linenos=table" >}} {{< highlight Shell "linenos=table" >}}
TIDY_CONFIG_FILE= TIDY_CONFIG_FILE=
TIDY_DRY_RUN=False TIDY_DRY_RUN=False
@ -65,7 +70,8 @@ TIDY_STOP_MAX_RUN_TIME=
# comma-separated list # comma-separated list
TIDY_STOP_PREFIX= TIDY_STOP_PREFIX=
{{< /highlight >}} {{< /highlight >}}
<!-- markdownlint-enable --> <!-- spellchecker-enable -->
<!-- markdownlint-restore -->
<!-- prettier-ignore-end --> <!-- prettier-ignore-end -->
## CLI options ## CLI options
@ -74,6 +80,7 @@ You can get all available CLI options by running `docker-tidy --help`:
<!-- prettier-ignore-start --> <!-- prettier-ignore-start -->
<!-- markdownlint-disable --> <!-- markdownlint-disable -->
<!-- spellchecker-disable -->
{{< highlight Shell "linenos=table" >}} {{< highlight Shell "linenos=table" >}}
$ docker-tidy --help $ docker-tidy --help
usage: docker-tidy [-h] [--dry-run] [-t HTTP_TIMEOUT] [-v] [-q] [--version] usage: docker-tidy [-h] [--dry-run] [-t HTTP_TIMEOUT] [-v] [-q] [--version]
@ -95,5 +102,6 @@ optional arguments:
-q decrease log level -q decrease log level
--version show program's version number and exit --version show program's version number and exit
{{< /highlight >}} {{< /highlight >}}
<!-- markdownlint-enable --> <!-- spellchecker-enable -->
<!-- markdownlint-restore -->
<!-- prettier-ignore-end --> <!-- prettier-ignore-end -->

View File

@ -2,12 +2,15 @@
title: Setup title: Setup
--- ---
<!-- spellchecker-disable -->
{{< toc >}} {{< toc >}}
<!-- spellchecker-enable -->
## Pip ## Pip
<!-- prettier-ignore-start --> <!-- prettier-ignore-start -->
<!-- markdownlint-disable --> <!-- markdownlint-disable -->
<!-- spellchecker-disable -->
{{< highlight Shell "linenos=table" >}} {{< highlight Shell "linenos=table" >}}
# From PyPI as unprivileged user # From PyPI as unprivileged user
$ pip install docker-tidy --user $ pip install docker-tidy --user
@ -18,7 +21,8 @@ $ sudo pip install docker-tidy
# From Wheel file # From Wheel file
$ pip install https://github.com/xoxys/docker-tidy/releases/download/v0.1.0/docker_tidy-0.1.0-py2.py3-none-any.whl $ pip install https://github.com/xoxys/docker-tidy/releases/download/v0.1.0/docker_tidy-0.1.0-py2.py3-none-any.whl
{{< /highlight >}} {{< /highlight >}}
<!-- markdownlint-enable --> <!-- spellchecker-enable -->
<!-- markdownlint-restore -->
<!-- prettier-ignore-end --> <!-- prettier-ignore-end -->
## Docker ## Docker
@ -28,6 +32,7 @@ if you want to use other sub-commands like `stop`.
<!-- prettier-ignore-start --> <!-- prettier-ignore-start -->
<!-- markdownlint-disable --> <!-- markdownlint-disable -->
<!-- spellchecker-disable -->
{{< highlight Shell "linenos=table" >}} {{< highlight Shell "linenos=table" >}}
docker run \ docker run \
-e TIDY_GC_MAX_CONTAINER_AGE="3 days ago" \ -e TIDY_GC_MAX_CONTAINER_AGE="3 days ago" \
@ -35,7 +40,8 @@ docker run \
-v /var/run/docker.sock:/var/run/docker.sock \ -v /var/run/docker.sock:/var/run/docker.sock \
xoxys/docker-tidy xoxys/docker-tidy
{{< /highlight >}} {{< /highlight >}}
<!-- markdownlint-enable --> <!-- spellchecker-enable -->
<!-- markdownlint-restore -->
<!-- prettier-ignore-end --> <!-- prettier-ignore-end -->
<!-- prettier-ignore-start --> <!-- prettier-ignore-start -->
@ -44,5 +50,5 @@ docker run \
**Info**\ **Info**\
Keep in mind, that you have to pass SELinux labels (:Z or :z) to your mount option if you are working on SELinux enabled systems. Keep in mind, that you have to pass SELinux labels (:Z or :z) to your mount option if you are working on SELinux enabled systems.
{{< /hint >}} {{< /hint >}}
<!-- markdownlint-enable --> <!-- markdownlint-restore -->
<!-- prettier-ignore-end --> <!-- prettier-ignore-end -->

View File

@ -2,7 +2,9 @@
title: Usage title: Usage
--- ---
<!-- spellchecker-disable -->
{{< toc >}} {{< toc >}}
<!-- spellchecker-enable -->
## Garbage Collector ## Garbage Collector