From 22724c5ba4c9cc249153444b7751321346a65216 Mon Sep 17 00:00:00 2001 From: Andrei Fangli Date: Wed, 23 Oct 2024 13:05:48 +0300 Subject: [PATCH] Updated index on wiki landing page --- webpack.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.ts b/webpack.config.ts index d317f55..db04362 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -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'); })