aboutsummaryrefslogtreecommitdiff
path: root/_content/doc
diff options
context:
space:
mode:
authorShulhan <m.shulhan@gmail.com>2025-02-26 23:00:28 +0700
committerShulhan <m.shulhan@gmail.com>2025-02-26 23:08:06 +0700
commit2c35be5a2c219ae11f070c1410abc767b8ff9703 (patch)
tree3c03d3c43d8edf4085bfd96f5fa3035839e0d902 /_content/doc
parentb792550290d4cc4a7d85b2cc01acddf2cdcc19d7 (diff)
downloadgo-x-website-doc-modules-format.mailed.tar.xz
doc/modules: fix link and formatting on godebug sectiondoc-modules-format.mailed
Using markdown inside HTML markup does not work, it rendered as is. So, replace the link by directly using anchor tag and backtick using code tag. Change-Id: I8ff966e64680640ec85b63811211a2e0fcbaf4b7
Diffstat (limited to '_content/doc')
-rw-r--r--_content/doc/modules/gomod-ref.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/_content/doc/modules/gomod-ref.md b/_content/doc/modules/gomod-ref.md
index 5999dc1a..c49679be 100644
--- a/_content/doc/modules/gomod-ref.md
+++ b/_content/doc/modules/gomod-ref.md
@@ -261,12 +261,12 @@ These override any toolchain defaults, and are overridden by explicit `//go:debu
<dl>
<dt>debug-key</dt>
<dd>The name of the setting to be applied.
- A list of settings and the versions they were introduced in can be found at [
- GODEBUG History](https://go.dev/doc/godebug#history).
+ A list of settings and the versions they were introduced in can be found at
+ <a href="/doc/godebug#history">GODEBUG History</a>.
</dd>
<dt>debug-value</dt>
<dd>The value provided to the setting.
- If not otherwise specified, `0` to disable and `1` to enable the named behavior.</dd>
+ If not otherwise specified, <code>0</code> to disable and <code>1</code> to enable the named behavior.</dd>
</dl>
### Examples {#godebug-examples}