Skip to content

Commit

Permalink
Regen CLI docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bep committed Sep 20, 2023
1 parent ac6ee20 commit f73109a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion content/en/commands/hugo_gen_chromastyles.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
```
Expand Down
2 changes: 1 addition & 1 deletion content/en/commands/hugo_gen_doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Generate Markdown documentation for the Hugo CLI.
Generate Markdown documentation for the Hugo CLI.
This command is, mostly, used to create up-to-date documentation
of Hugo's command-line interface for https://gohugo.io/.

It creates one Markdown file per command with front matter suitable
for rendering in Hugo.

Expand Down
7 changes: 6 additions & 1 deletion content/en/commands/hugo_mod_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit f73109a

Please sign in to comment.