cleanup getting started guid

This commit is contained in:
Robert Kaussow 2020-09-18 20:42:23 +02:00
parent 6eec8ac815
commit ffaa3cedfb
No known key found for this signature in database
GPG Key ID: 65362AE74AF98B61

View File

@ -53,9 +53,7 @@ To prepare your new site environment just a few steps are required:
# Geekdoc required configuration # Geekdoc required configuration
pygmentsUseClasses = true pygmentsUseClasses = true
pygmentsCodeFences = true pygmentsCodeFences = true
disablePathToLower = true disablePathToLower = true
enableGitInfo=true
# Needed for mermaid shortcodes # Needed for mermaid shortcodes
[markup] [markup]
@ -70,7 +68,7 @@ To prepare your new site environment just a few steps are required:
5. Test your site. 5. Test your site.
```Shell ```Shell
hugo server --theme geekdoc -D hugo server -D
``` ```
### Option 1: Download pre-build release bundle ### Option 1: Download pre-build release bundle
@ -78,6 +76,7 @@ To prepare your new site environment just a few steps are required:
Download and extract the latest release bundle into the theme directory. Download and extract the latest release bundle into the theme directory.
```Shell ```Shell
mkdir -p themes/hugo-geekdoc/
curl -L https://github.com/xoxys/hugo-geekdoc/releases/latest/download/hugo-geekdoc.tar.gz | tar -xz -C themes/hugo-geekdoc/ --strip-components=1 curl -L https://github.com/xoxys/hugo-geekdoc/releases/latest/download/hugo-geekdoc.tar.gz | tar -xz -C themes/hugo-geekdoc/ --strip-components=1
``` ```