From 71df5b837033f3e4db17d52e196e48e79894acee Mon Sep 17 00:00:00 2001 From: Litruv Date: Sun, 9 Feb 2025 20:26:51 +1100 Subject: [PATCH] populate author info on data load --- index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.js b/index.js index 6dc8beb..00f3fed 100644 --- a/index.js +++ b/index.js @@ -531,6 +531,9 @@ class Documentation { this.indexData = data; window._indexData = data; + // Add this line to populate author info + this.populateAuthorInfo(data.author); + window.originalDocTitle = data.title || 'Documentation'; document.title = window.originalDocTitle;