We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81ed98c commit a918161Copy full SHA for a918161
.github/src/check.js
@@ -289,10 +289,10 @@ const getTotal = (answered) => {
289
const answered = skills[unit];
290
if (expected) {
291
const todo = match(expected, answered);
292
- todos.push(`\n## [${unit}](Skills/${unit}.md)\n`);
+ todos.push(`\n## [${unit}](/Skills/${unit}.md)\n`);
293
todos.push(...todo);
294
}
295
- totals.push(`- [${unit}](Skills/${unit}.md)`);
+ totals.push(`- [${unit}](/Skills/${unit}.md)`);
296
const total = getTotal(answered);
297
totals.push(...total);
298
0 commit comments