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 302dba4 commit d871cbcCopy full SHA for d871cbc
generate-site.js
@@ -54,8 +54,7 @@ exclude:
54
console.log('Generated _config.yml');
55
56
// Generate index.md
57
- let indexMd = `# Graph-Break Registry
58
-
+ let indexMd = `
59
Below are all known graph breaks detected by Dynamo.
60
61
<!-- Search input - This will require client-side JavaScript if desired.
@@ -68,7 +67,7 @@ Below are all known graph breaks detected by Dynamo.
68
67
// Add registry items to index.md
69
Object.entries(registry).forEach(([id, entries]) => {
70
const entry = entries[0]; // Assuming first entry is sufficient for list view
71
- indexMd += `- [${id}](gb/${id.toLowerCase()}.md) — ${entry.Gb_type}
+ indexMd += `- [${id}](gb/${id.toLowerCase()}.html) — ${entry.Gb_type}
72
`;
73
});
74
0 commit comments