Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kosu-system-contracts: lowercase markdown in-page links #123

Merged
merged 2 commits into from Jun 21, 2019
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file or symbol
Failed to load files and symbols.

Always

Just for now

Next

lowercase required for in-page links

  • Loading branch information
hrharder committed Jun 20, 2019
commit 62fe06404cc93de45b921581abc499e29fe47fe7
@@ -119,7 +119,7 @@ function parseMarkdown(devDoc, methods) {
const contents = [];
for (const method of methods) {
const name = method.name;
contents.push(`[${name}](#${name})`);
contents.push(`[${name}](#${name.toLowerCase()})`);
}
output.push(
{ h2: "Contents" },
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.