Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
// Grab all H2 and H3 only inside post content
const contentArea = document.querySelector(".entry-content");
if(contentArea){
const headings = contentArea.querySelectorAll("h2, h3");
headings.forEach((heading, index) => {
let id = heading.id;
if(!id){ // if no ID, generate one
id = "heading-" + (index+1);
heading.id = id;
}
const li = document.createElement("li");
// H3 को nested (indent) करने के लिए
if(heading.tagName === "H3"){
li.style.marginLeft = "20px";
}
li.innerHTML = `${heading.innerText}`;
tocList.appendChild(li);
});
}
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.