From 7f81dd99721e58b4df6e155dceb19d4a9a284f5a Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Wed, 12 Feb 2025 13:45:11 -0800 Subject: [PATCH] content: Regen commands markup --- content/en/commands/hugo_gen.md | 2 +- content/en/commands/hugo_gen_doc.md | 2 +- content/en/commands/hugo_mod.md | 16 ++++++++-------- content/en/commands/hugo_mod_clean.md | 2 +- content/en/commands/hugo_mod_get.md | 6 +++--- content/en/commands/hugo_mod_graph.md | 2 +- content/en/commands/hugo_mod_init.md | 6 +++--- content/en/commands/hugo_mod_npm.md | 4 ++-- content/en/commands/hugo_mod_npm_pack.md | 6 +++--- content/en/commands/hugo_mod_tidy.md | 2 +- content/en/commands/hugo_mod_vendor.md | 2 +- content/en/commands/hugo_mod_verify.md | 2 +- content/en/commands/hugo_server.md | 2 +- content/en/commands/hugo_server_trust.md | 2 +- 14 files changed, 28 insertions(+), 28 deletions(-) diff --git a/content/en/commands/hugo_gen.md b/content/en/commands/hugo_gen.md index d6333b52d..ae11a0321 100644 --- a/content/en/commands/hugo_gen.md +++ b/content/en/commands/hugo_gen.md @@ -38,6 +38,6 @@ Generate documentation for your project using Hugo's documentation engine, inclu * [hugo](/commands/hugo/) - Build your site * [hugo gen chromastyles](/commands/hugo_gen_chromastyles/) - Generate CSS stylesheet for the Chroma code highlighter -* [hugo gen doc](/commands/hugo_gen_doc/) - Generate Markdown documentation for the Hugo CLI. +* [hugo gen doc](/commands/hugo_gen_doc/) - Generate Markdown documentation for the Hugo CLI * [hugo gen man](/commands/hugo_gen_man/) - Generate man pages for the Hugo CLI diff --git a/content/en/commands/hugo_gen_doc.md b/content/en/commands/hugo_gen_doc.md index 2c2c3a118..3d808e75c 100644 --- a/content/en/commands/hugo_gen_doc.md +++ b/content/en/commands/hugo_gen_doc.md @@ -5,7 +5,7 @@ url: /commands/hugo_gen_doc/ --- ## hugo gen doc -Generate Markdown documentation for the Hugo CLI. +Generate Markdown documentation for the Hugo CLI ### Synopsis diff --git a/content/en/commands/hugo_mod.md b/content/en/commands/hugo_mod.md index c037be6da..25a27185d 100644 --- a/content/en/commands/hugo_mod.md +++ b/content/en/commands/hugo_mod.md @@ -48,12 +48,12 @@ See https://gohugo.io/hugo-modules/ for more information. ### SEE ALSO * [hugo](/commands/hugo/) - Build your site -* [hugo mod clean](/commands/hugo_mod_clean/) - Delete the Hugo Module cache for the current project. -* [hugo mod get](/commands/hugo_mod_get/) - Resolves dependencies in your current Hugo Project. -* [hugo mod graph](/commands/hugo_mod_graph/) - Print a module dependency graph. -* [hugo mod init](/commands/hugo_mod_init/) - Initialize this project as a Hugo Module. -* [hugo mod npm](/commands/hugo_mod_npm/) - Various npm helpers. -* [hugo mod tidy](/commands/hugo_mod_tidy/) - Remove unused entries in go.mod and go.sum. -* [hugo mod vendor](/commands/hugo_mod_vendor/) - Vendor all module dependencies into the _vendor directory. -* [hugo mod verify](/commands/hugo_mod_verify/) - Verify dependencies. +* [hugo mod clean](/commands/hugo_mod_clean/) - Delete the Hugo Module cache for the current project +* [hugo mod get](/commands/hugo_mod_get/) - Resolves dependencies in your current Hugo project +* [hugo mod graph](/commands/hugo_mod_graph/) - Print a module dependency graph +* [hugo mod init](/commands/hugo_mod_init/) - Initialize this project as a Hugo Module +* [hugo mod npm](/commands/hugo_mod_npm/) - Various npm helpers +* [hugo mod tidy](/commands/hugo_mod_tidy/) - Remove unused entries in go.mod and go.sum +* [hugo mod vendor](/commands/hugo_mod_vendor/) - Vendor all module dependencies into the _vendor directory +* [hugo mod verify](/commands/hugo_mod_verify/) - Verify dependencies diff --git a/content/en/commands/hugo_mod_clean.md b/content/en/commands/hugo_mod_clean.md index 6f49284b7..ff2255e53 100644 --- a/content/en/commands/hugo_mod_clean.md +++ b/content/en/commands/hugo_mod_clean.md @@ -5,7 +5,7 @@ url: /commands/hugo_mod_clean/ --- ## hugo mod clean -Delete the Hugo Module cache for the current project. +Delete the Hugo Module cache for the current project ### Synopsis diff --git a/content/en/commands/hugo_mod_get.md b/content/en/commands/hugo_mod_get.md index 08e1e5c84..a5c9a9ea9 100644 --- a/content/en/commands/hugo_mod_get.md +++ b/content/en/commands/hugo_mod_get.md @@ -5,19 +5,19 @@ url: /commands/hugo_mod_get/ --- ## hugo mod get -Resolves dependencies in your current Hugo Project. +Resolves dependencies in your current Hugo project ### Synopsis -Resolves dependencies in your current Hugo Project. +Resolves dependencies in your current Hugo project. Some examples: Install the latest version possible for a given module: hugo mod get github.com/gohugoio/testshortcodes - + Install a specific version: hugo mod get github.com/gohugoio/testshortcodes@v0.3.0 diff --git a/content/en/commands/hugo_mod_graph.md b/content/en/commands/hugo_mod_graph.md index b7bfc6bfe..cb2bdfb5a 100644 --- a/content/en/commands/hugo_mod_graph.md +++ b/content/en/commands/hugo_mod_graph.md @@ -5,7 +5,7 @@ url: /commands/hugo_mod_graph/ --- ## hugo mod graph -Print a module dependency graph. +Print a module dependency graph ### Synopsis diff --git a/content/en/commands/hugo_mod_init.md b/content/en/commands/hugo_mod_init.md index 0d9f1fd4e..3315e97d6 100644 --- a/content/en/commands/hugo_mod_init.md +++ b/content/en/commands/hugo_mod_init.md @@ -5,15 +5,15 @@ url: /commands/hugo_mod_init/ --- ## hugo mod init -Initialize this project as a Hugo Module. +Initialize this project as a Hugo Module ### Synopsis Initialize this project as a Hugo Module. It will try to guess the module path, but you may help by passing it as an argument, e.g: - + hugo mod init github.com/gohugoio/testshortcodes - + Note that Hugo Modules supports multi-module projects, so you can initialize a Hugo Module inside a subfolder on GitHub, as one example. diff --git a/content/en/commands/hugo_mod_npm.md b/content/en/commands/hugo_mod_npm.md index 4c6b0c6a7..39a559e0f 100644 --- a/content/en/commands/hugo_mod_npm.md +++ b/content/en/commands/hugo_mod_npm.md @@ -5,7 +5,7 @@ url: /commands/hugo_mod_npm/ --- ## hugo mod npm -Various npm helpers. +Various npm helpers ### Synopsis @@ -41,5 +41,5 @@ hugo mod npm [command] [flags] ### SEE ALSO * [hugo mod](/commands/hugo_mod/) - Manage modules -* [hugo mod npm pack](/commands/hugo_mod_npm_pack/) - Experimental: Prepares and writes a composite package.json file for your project. +* [hugo mod npm pack](/commands/hugo_mod_npm_pack/) - Experimental: Prepares and writes a composite package.json file for your project diff --git a/content/en/commands/hugo_mod_npm_pack.md b/content/en/commands/hugo_mod_npm_pack.md index ffbf0703e..5ece05769 100644 --- a/content/en/commands/hugo_mod_npm_pack.md +++ b/content/en/commands/hugo_mod_npm_pack.md @@ -5,14 +5,14 @@ url: /commands/hugo_mod_npm_pack/ --- ## hugo mod npm pack -Experimental: Prepares and writes a composite package.json file for your project. +Experimental: Prepares and writes a composite package.json file for your project ### Synopsis Prepares and writes a composite package.json file for your project. On first run it creates a "package.hugo.json" in the project root if not already there. This file will be used as a template file -with the base dependency set. +with the base dependency set. This set will be merged with all "package.hugo.json" files found in the dependency tree, picking the version closest to the project. @@ -55,5 +55,5 @@ hugo mod npm pack [flags] [args] ### SEE ALSO -* [hugo mod npm](/commands/hugo_mod_npm/) - Various npm helpers. +* [hugo mod npm](/commands/hugo_mod_npm/) - Various npm helpers diff --git a/content/en/commands/hugo_mod_tidy.md b/content/en/commands/hugo_mod_tidy.md index cff192130..c7ae40625 100644 --- a/content/en/commands/hugo_mod_tidy.md +++ b/content/en/commands/hugo_mod_tidy.md @@ -5,7 +5,7 @@ url: /commands/hugo_mod_tidy/ --- ## hugo mod tidy -Remove unused entries in go.mod and go.sum. +Remove unused entries in go.mod and go.sum ``` hugo mod tidy [flags] [args] diff --git a/content/en/commands/hugo_mod_vendor.md b/content/en/commands/hugo_mod_vendor.md index 2b812e4c4..dc403affe 100644 --- a/content/en/commands/hugo_mod_vendor.md +++ b/content/en/commands/hugo_mod_vendor.md @@ -5,7 +5,7 @@ url: /commands/hugo_mod_vendor/ --- ## hugo mod vendor -Vendor all module dependencies into the _vendor directory. +Vendor all module dependencies into the _vendor directory ### Synopsis diff --git a/content/en/commands/hugo_mod_verify.md b/content/en/commands/hugo_mod_verify.md index 051477c90..2f22a2e49 100644 --- a/content/en/commands/hugo_mod_verify.md +++ b/content/en/commands/hugo_mod_verify.md @@ -5,7 +5,7 @@ url: /commands/hugo_mod_verify/ --- ## hugo mod verify -Verify dependencies. +Verify dependencies ### Synopsis diff --git a/content/en/commands/hugo_server.md b/content/en/commands/hugo_server.md index 4ab161f8f..d735f449a 100644 --- a/content/en/commands/hugo_server.md +++ b/content/en/commands/hugo_server.md @@ -94,5 +94,5 @@ hugo server [command] [flags] ### SEE ALSO * [hugo](/commands/hugo/) - Build your site -* [hugo server trust](/commands/hugo_server_trust/) - Install the local CA in the system trust store. +* [hugo server trust](/commands/hugo_server_trust/) - Install the local CA in the system trust store diff --git a/content/en/commands/hugo_server_trust.md b/content/en/commands/hugo_server_trust.md index 9d24e78e3..22ca2491e 100644 --- a/content/en/commands/hugo_server_trust.md +++ b/content/en/commands/hugo_server_trust.md @@ -5,7 +5,7 @@ url: /commands/hugo_server_trust/ --- ## hugo server trust -Install the local CA in the system trust store. +Install the local CA in the system trust store ``` hugo server trust [flags] [args]