From 0bdddba6aede2b3baf616d1d46a3c6b16ba627d5 Mon Sep 17 00:00:00 2001 From: Ankit Kumar Date: Sun, 5 May 2024 21:48:15 +0900 Subject: [PATCH] if title is not given then in sidebar nothing will be shown --- publish.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publish.js b/publish.js index a2c701f..dc3472b 100644 --- a/publish.js +++ b/publish.js @@ -530,7 +530,7 @@ function buildNavbar() { * @return {string} The HTML for the navigation sidebar. */ function buildSidebar(members) { - const title = themeOpts.title || 'Home'; + const title = themeOpts.title; const isHTML = RegExp.prototype.test.bind(/(<([^>]+)>)/i);