CoolFace
Apppublic

CalebKoster/Translation_Note_Alignment

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
highlightNote.js10 linesDownload Raw Back to root
1function highlightNote(noteId, verseText, startPos, endPos) {2    const noteElement = document.getElementById(noteId);3    if(noteElement) {4        const highlightedText = `<span class="highlight">${verseText.substring(startPos, endPos)}</span>`;5        const verseTextElement = document.querySelector('.verse-text');6        if (verseTextElement) {7            verseTextElement.innerHTML = verseText.substring(0, startPos) + highlightedText + verseText.substring(endPos);8        }9    }10}