Study Guide Generator

Study Guide Generator

Study Guide Generator

Create structured review sheets for exams and classes

Live Guide Preview

Content updates automatically

History 101: Midterm Review

World History • Fall Semester 2024

Key Terminology

Core Concepts

Practice Questions

Generated via Study Guide Generator

Vocabulary Management

Add New Term

Current Vocabulary List
  • No terms added yet.

Concepts & Questions

Add Core Concept

Add Practice Question

Active Concepts

    Active Questions

      Guide Configuration

      Header Details

      Add all your content before downloading the PDF.

      ${item.def}

      `; }); } function sggRenderConceptsList() { const list = document.getElementById('sgg-list-concepts'); list.innerHTML = ''; if(sggData.concepts.length === 0) { list.innerHTML = '
    • No concepts added.
    • '; return; } sggData.concepts.forEach((item, i) => { list.innerHTML += `
    • ${item.title}
    • `; }); } function sggRenderQAList() { const list = document.getElementById('sgg-list-qa'); list.innerHTML = ''; if(sggData.qa.length === 0) { list.innerHTML = '
    • No questions added.
    • '; return; } sggData.qa.forEach((item, i) => { list.innerHTML += `
    • ${item.q}
    • `; }); } // --- PDF Export --- function sggGeneratePDF() { const element = document.getElementById('sgg-guide-paper'); const btn = document.getElementById('sgg-btn-download'); const originalText = btn.innerHTML; // Ensure Preview tab is active so element is visible sggSwitchTab('sgg-preview'); btn.innerHTML = ' Generating PDF...'; document.body.classList.add('generating-pdf'); const opt = { margin: [10, 10, 10, 10], filename: `${sggData.title.replace(/[^a-z0-9]/gi, '_').toLowerCase()}_study_guide.pdf`, image: { type: 'jpeg', quality: 0.98 }, html2canvas: { scale: 2 }, jsPDF: { unit: 'mm', format: 'a4', orientation: 'portrait' } }; html2pdf().set(opt).from(element).save().then(() => { btn.innerHTML = originalText; document.body.classList.remove('generating-pdf'); }); }
      Scroll to Top