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 1af63a9 commit 27d0c7dCopy full SHA for 27d0c7d
tools/doc/stability.mjs
@@ -32,6 +32,7 @@ function collectStability(data) {
32
33
stability.push({
34
api: mod.name,
35
+ displayName: mod.textRaw,
36
link: link,
37
stability: mod.stability,
38
stabilityText: `(${mod.stability}) ${mod.stabilityText}`,
@@ -47,7 +48,7 @@ function createMarkdownTable(data) {
47
48
const md = ['| API | Stability |', '| --- | --------- |'];
49
50
for (const mod of data) {
- md.push(`| [${mod.api}](${mod.link}) | ${mod.stabilityText} |`);
51
+ md.push(`| [${mod.displayName}](${mod.link}) | ${mod.stabilityText} |`);
52
}
53
54
return md.join('\n');
0 commit comments