diff --git a/main.py b/main.py index 0d8beb7..22f4579 100644 --- a/main.py +++ b/main.py @@ -13,6 +13,9 @@ def process_html(html: str) -> str: def split_notes(text: str, limit: int) -> list[str]: + if len(text) <= limit: + return [text] + notes = [] prev = 0