3 lines
124 B
Python
3 lines
124 B
Python
def raw_text_to_card(text: str) -> str:
|
|
"""Convert raw text to a flat card representation."""
|
|
return f"Card: {text}" |