"""
AI Processor - HTML Templates for Print Versions
Contains HTML/CSS header templates for Q&A, Cloze, and Multiple Choice print output.
"""
def get_qa_html_header(title: str) -> str:
"""Get HTML header for Q&A print version."""
return f"""
{title} - Fragen
"""
def get_cloze_html_header(title: str) -> str:
"""Get HTML header for cloze print version."""
return f"""
{title} - Lueckentext
"""
def get_mc_html_header(title: str) -> str:
"""Get HTML header for MC print version."""
return f"""
{title} - Multiple Choice
"""