Online Automated Meeting Notes Compiler

Online Automated Meeting Notes Compiler

Meeting Transcript

Compiled Notes

Your compiled notes will appear here.

Keyword Configuration

Configure the keywords used to identify action items and decisions. Edit the JSON data below.

Compiled on: ${new Date().toLocaleString()}

Summary

${summary}

Action Items

    ${actionItemsHtml}

Decisions Made

    ${decisionsHtml}
`; } // Tab functionality window.changeTab = function(event, tabName) { document.querySelectorAll('.tab').forEach(tab => tab.classList.remove('active')); event.currentTarget.classList.add('active'); document.querySelectorAll('.tab-content').forEach(content => content.classList.remove('active')); document.getElementById(tabName).classList.add('active'); } // Initial Load loadKeywordData(); });
Scroll to Top