Regen CLI docs

This commit is contained in:
Bjørn Erik Pedersen 2023-09-20 18:06:01 +02:00
parent ac6ee2027b
commit f73109ae24
No known key found for this signature in database
GPG Key ID: 330E6E2BD4859D8F
3 changed files with 8 additions and 3 deletions

View File

@ -21,7 +21,7 @@ hugo gen chromastyles [flags] [args]
```
-h, --help help for chromastyles
--highlightStyle string style used for highlighting lines (see https://github.com/alecthomas/chroma) (default "bg:#ffffcc")
--highlightStyle string style used for highlighting lines (see https://github.com/alecthomas/chroma)
--linesStyle string style used for line numbers (see https://github.com/alecthomas/chroma)
--style string highlighter style (see https://xyproto.github.io/splash/docs/) (default "friendly")
```

View File

@ -22,7 +22,12 @@ Install a specific version:
hugo mod get github.com/gohugoio/testshortcodes@v0.3.0
Install the latest versions of all module dependencies:
Install the latest versions of all direct module dependencies:
hugo mod get
hugo mod get ./... (recursive)
Install the latest versions of all module dependencies (direct and indirect):
hugo mod get -u
hugo mod get -u ./... (recursive)