Active Voice Calculator
Text with passive highlights:
${highlightedText}
`;
// Suggestions for improvement
const suggestionsDiv = document.getElementById('suggestions');
suggestionsDiv.innerHTML = `
Suggestions
${passiveCount > 0 ? `Tip: Try rewriting passive sentences to active voice for clarity.
Example: "The report was written by John" → "John wrote the report."
Great! Your text is already mostly in active voice.
`} `; // Show results & PDF button document.getElementById('results').style.display = 'block'; document.getElementById('pdf-btn').style.display = 'block'; } function generatePDF() { const { jsPDF } = window.jspdf; const doc = new jsPDF(); const calculator = document.getElementById('calculator'); html2canvas(calculator).then(canvas => { const imgData = canvas.toDataURL('image/png'); doc.addImage(imgData, 'PNG', 10, 10, 190, 0); doc.save('Active_Voice_Analysis.pdf'); }); }