Skip to content

Commit

Permalink
lower case on links
Browse files Browse the repository at this point in the history
  • Loading branch information
kbariotis committed Nov 29, 2017
1 parent 5d3405f commit 7abe6fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verbfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ function customDocsHelpers(app) {
});

app.helper('anchor', function(file) {
return link(file.stem, '#' + file.stem);
return link(file.stem, '#' + file.stem.toLowerCase());
});

app.helper('codeLink', function(file) {
Expand Down

0 comments on commit 7abe6fd

Please sign in to comment.