This commit is contained in:
Paul Gauthier 2025-03-14 09:41:37 -07:00
parent f664420628
commit 54d6643a1f
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ document.addEventListener('DOMContentLoaded', function() {
function parseTranscript() {
const markers = [];
// Find the Commentary heading
const transcriptHeading = Array.from(document.querySelectorAll('h1')).find(el => el.textContent.trim() === 'Commentary');
const transcriptHeading = Array.from(document.querySelectorAll('h2')).find(el => el.textContent.trim() === 'Commentary');
if (transcriptHeading) {
// Get all list items after the transcript heading