Skip to content

Commit 023f9d8

Browse files
miharpclaude
andcommitted
Fix empty anchor tags in lang_variables and ha docs
htmlproofer flags <a> tags without href attributes. Replace legacy named anchor patterns with <span id="..."></span> which is the correct HTML5 approach for bookmark targets. - lang_variables.markdown: 5 nested <a id="..."> tags - ha.markdown: 1 <a name="..."> tag Fixes 12 htmlproofer failures. Part of #120. Signed-off-by: Michael Harp <mike@mikeharp.com> Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 74fae4c commit 023f9d8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/_openvox_8x/lang_variables.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ title: "Language: Variables"
1717
[puppet.conf]: ./config_file_main.html
1818

1919

20-
<a id="facts"><a id="trusted-node-data"><a id="agent-set-variables"><a id="master-set-variables"><a id="parser-set-variables">
20+
<span id="facts"></span><span id="trusted-node-data"></span><span id="agent-set-variables"></span><span id="master-set-variables"></span><span id="parser-set-variables"></span>
2121

2222
Variables store values so they can be accessed later.
2323

docs/_openvoxdb_8x/ha.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ catalog vs. the many database rows required to store its resources). This
116116
facilitates simple, deterministic conflict resolution.
117117

118118

119-
Q: <a name="exportedResources"></a>*What's the deal with exported resources?*
119+
Q: <span id="exportedResources"></span>*What's the deal with exported resources?*
120120

121121
A: Exported resources are a great feature, but you need to be careful when using
122122
them. In particular: because PuppetDB is *eventually* consistent, changes to

0 commit comments

Comments
 (0)