[ty] fix missing '>' in HTML anchor tags in CLI reference (#18096)

Co-authored-by: Usul <Usul-Dev@users.noreply.github.com>
This commit is contained in:
Usul-Dev 2025-05-15 00:50:35 +09:00 committed by GitHub
parent cf70c7863c
commit 8104b1e83b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -179,7 +179,7 @@ fn generate_command<'a>(output: &mut String, command: &'a Command, parents: &mut
let id = format!("{name_key}--{}", arg.get_id());
output.push_str(&format!("<dt id=\"{id}\">"));
output.push_str(&format!(
"<a href=\"#{id}\"<code>{}</code></a>",
"<a href=\"#{id}\"><code>{}</code></a>",
arg.get_id().to_string().to_uppercase(),
));
output.push_str("</dt>");