disable spellchecker for 'highlight' shortcodes

This commit is contained in:
Robert Kaussow 2020-06-07 16:44:43 +02:00
parent 7bdb764f8b
commit aa4cd9f3ca
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
2 changed files with 7 additions and 7 deletions

View File

@ -2,11 +2,5 @@ Codecov
DNS DNS
Kaussow Kaussow
PyPI PyPI
corenetworks
toc
CoreNetworks CoreNetworks
usr corenetworks
env
dns
CoreNetworksException
str

View File

@ -2,20 +2,25 @@
title: Setup title: Setup
--- ---
<!-- spellchecker-disable -->
{{< toc >}} {{< toc >}}
<!-- spellchecker-enable -->
## Installation ## Installation
<!-- prettier-ignore-start --> <!-- prettier-ignore-start -->
<!-- spellchecker-disable -->
{{< highlight Python "linenos=table" >}} {{< highlight Python "linenos=table" >}}
pip install corenetworks pip install corenetworks
{{< /highlight >}} {{< /highlight >}}
<!-- spellchecker-enable -->
<!-- prettier-ignore-end --> <!-- prettier-ignore-end -->
## Example usage ## Example usage
<!-- prettier-ignore-start --> <!-- prettier-ignore-start -->
<!-- markdownlint-disable --> <!-- markdownlint-disable -->
<!-- spellchecker-disable -->
{{< highlight Python "linenos=table" >}} {{< highlight Python "linenos=table" >}}
#!/usr/bin/env python #!/usr/bin/env python
@ -72,5 +77,6 @@ try:
except Exception as e: except Exception as e:
print(str(e)) print(str(e))
{{< /highlight >}} {{< /highlight >}}
<!-- spellchecker-enable -->
<!-- markdownlint-restore --> <!-- markdownlint-restore -->
<!-- prettier-ignore-end --> <!-- prettier-ignore-end -->