From 30cbf84fd8ad256dd5f994aa3a087a64e8306d27 Mon Sep 17 00:00:00 2001 From: Hamish Willee Date: Mon, 23 Feb 2026 18:29:52 +1100 Subject: [PATCH] docs: uorb msg generation - fix up anchors (#26562) --- Tools/msg/generate_msg_docs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/msg/generate_msg_docs.py b/Tools/msg/generate_msg_docs.py index 0b30cba0c5..69d7cb0e62 100755 --- a/Tools/msg/generate_msg_docs.py +++ b/Tools/msg/generate_msg_docs.py @@ -511,7 +511,7 @@ pageClass: is-wide-page markdown += "--- | --- | --- |---\n" for name, command in self.commandConstants.items(): description = f" {command.comment} " if enum.comment else " " - markdown += f' {name} | `{command.type}` | {command.value} |{description}\n' + markdown += f' {name} | `{command.type}` | {command.value} |{description}\n' """ for commandConstant in self.commandConstants.values(): #print(commandConstant) @@ -538,7 +538,7 @@ pageClass: is-wide-page markdown += "--- | --- | --- |---\n" for name, enum in self.constantFields.items(): description = f" {enum.comment} " if enum.comment else " " - markdown += f' {name} | `{enum.type}` | {enum.value} |{description}\n' + markdown += f' {name} | `{enum.type}` | {enum.value} |{description}\n'