Skip to content

Commit 7abe6fd

Browse files
committed
lower case on links
1 parent 5d3405f commit 7abe6fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

verbfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ function customDocsHelpers(app) {
193193
});
194194

195195
app.helper('anchor', function(file) {
196-
return link(file.stem, '#' + file.stem);
196+
return link(file.stem, '#' + file.stem.toLowerCase());
197197
});
198198

199199
app.helper('codeLink', function(file) {

0 commit comments

Comments
 (0)