Commit eae3cdd
committed
desktops: fix broken #tier-overrides anchor link
The Top-level fields table at line 112 links to '#tier-overrides',
but the heading 'tier_overrides' slugifies to 'tier_overrides'
under Python-Markdown's default slugifier (underscores are
preserved as part of the word-character class). The link
silently 404s when clicked.
Add an explicit anchor: `### tier_overrides {#tier-overrides}`.
This is the same pattern already used for the Lifecycle: install
heading further down the file.
Verified the other internal fragment link in the same table —
`#tier-blocks` for the heading `### Tier blocks` — slugifies
correctly to 'tier-blocks' (whitespace becomes the separator),
so it does NOT need an explicit anchor and is left alone.
The other two internal fragment links in the file
(`#yaml-schema` from the 'Adding a new desktop' walkthrough and
`#lifecycle-install` from the bash module API table) both
resolve correctly already.1 parent f33e0ad commit eae3cdd
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
134 | 134 | | |
135 | 135 | | |
136 | 136 | | |
137 | | - | |
| 137 | + | |
138 | 138 | | |
139 | 139 | | |
140 | 140 | | |
| |||
0 commit comments