From fd9a87a86a71f23c0169164a5b3a53db94db1112 Mon Sep 17 00:00:00 2001 From: John Hogenmiller Date: Mon, 8 Jan 2024 13:22:15 -0500 Subject: [PATCH] fix(docs): add editURL.enable = true (#245) The MR documents the requirement to enable editURL setting. [A prior commit](https://github.com/imfing/hextra/commit/04a5c7378a867111e91e3cd6425ed132889a5ad1#diff-5311bf4e1519696010f8298385d9de30210dfcd9dee8785f6deba3a084b62eecL26) the behavior changed from a default of "disable = false" to a default of "enabled = false". --- exampleSite/content/docs/guide/configuration.md | 1 + 1 file changed, 1 insertion(+) diff --git a/exampleSite/content/docs/guide/configuration.md b/exampleSite/content/docs/guide/configuration.md index 49e19ab..c37361c 100644 --- a/exampleSite/content/docs/guide/configuration.md +++ b/exampleSite/content/docs/guide/configuration.md @@ -139,6 +139,7 @@ To configure the page edit link, we can set the `params.editURL.base` parameter ```yaml {filename="hugo.yaml"} params: editURL: + enable: true base: "https://github.com/your-username/your-repo/edit/main" ```