We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6598d04 commit e3950c5Copy full SHA for e3950c5
bin/typedoc.js
@@ -5598,7 +5598,7 @@ var td;
5598
else if (_this.project) {
5599
reflection = _this.project.findReflectionByName(name);
5600
}
5601
- if (reflection) {
+ if (reflection && reflection.url) {
5602
return td.Util.format('<a href="%s">%s</a>', _this.getRelativeUrl(reflection.url), name);
5603
5604
else {
src/td/output/plugins/MarkedPlugin.ts
@@ -205,7 +205,7 @@ module td
205
reflection = this.project.findReflectionByName(name);
206
207
208
209
return Util.format('<a href="%s">%s</a>', this.getRelativeUrl(reflection.url), name);
210
} else {
211
return match;
0 commit comments