Spell & Grammar Checker
{% if corrected_spelling %}
✅ Corrected Spelling:
{{ corrected_spelling }}
{% endif %}
{% if corrected_grammar %}
📝 Grammar Suggestions:
{{ corrected_grammar }}
{% endif %}
{% if grammar_issues %}
🚨 Issues Found:
{% for issue in grammar_issues %}
- {{ issue }}
{% endfor %}
{% endif %}