Skip to content

Instantly share code, notes, and snippets.

View shawnthompson's full-sized avatar

Shawn Thompson shawnthompson

  • Montreal
View GitHub Profile
@shawnthompson
shawnthompson / gen-toc.js
Last active February 25, 2025 19:57
TOC Bookmarklet
javascript:(function() {
let headings = document.querySelectorAll("h1[id], h2[id], h3[id], h4[id], h5[id], h6[id]");
if (!headings.length) {
alert("No headings with IDs found.");
return;
}
let toc = "";
let lastLevel = 1; // Tracks the last heading level
let indent = ""; // Used for indentation