Skip to content

Commit

Permalink
Updated index on wiki landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei15193 committed Oct 23, 2024
1 parent 0d05751 commit 22724c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,13 +225,13 @@ class GenerateDocumentationPlugin {
.map(namespace => {
let listMarker = '*';

return `* **${namespace.name}**\n` + namespace
return `#### **${namespace.name}**\n` + namespace
.declarations
.map((declaration, declarationIndex, declarations) => {
if (declarationIndex > 0 && declarations[declarationIndex - 1].promoted !== declarations[declarationIndex].promoted)
listMarker = '-';

return ` ${listMarker} [${this._getSimpleName(declaration)}](${this._getIdentifier(declaration)})`;
return `${listMarker} [${this._getSimpleName(declaration)}](${this._getIdentifier(declaration)})`;
})
.join('\n');
})
Expand Down

0 comments on commit 22724c5

Please sign in to comment.