We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30b05b3 commit 5771938Copy full SHA for 5771938
src/format.ts
@@ -137,7 +137,7 @@ const generateCompositeTypeMarkdown = (
137
138
const maybeCreateTypeLink = (type: string, customTypeNames: Set<string>) => {
139
if (customTypeNames.has(type)) return `[${type}](#${type})`
140
- const docsUrl = TYPES[type]
+ const docsUrl = type.match(/character \(\d+\)/) ? TYPES['character'] : TYPES[type]
141
if (docsUrl) return `<a href="${docsUrl}">${type}</a>`
142
return type
143
}
0 commit comments