fix(docs): fix broken markdown links (#7081)

* fix(docs): fix markdown docs links

More than half of them were actually valid links but, due to missing file extensions were flagged as invalid. I added a file extension, so it should pass now.

* Updated docgen to include extension
This commit is contained in:
Muhammad Atif Ali
2023-04-11 15:05:51 -05:00
committed by GitHub
parent a44070e2ec
commit 531fd23fd2
20 changed files with 103 additions and 106 deletions
+1 -4
View File
@@ -55,10 +55,7 @@ func init() {
return fmt.Sprintf("<code>%s</code>", s)
},
"commandURI": func(cmd *clibase.Cmd) string {
return strings.TrimSuffix(
fmtDocFilename(cmd),
".md",
)
return fmtDocFilename(cmd)
},
"fullName": fullName,
"tableHeader": func() string {