From b272c928d43a511d08a43ee1ff4d9a9e954d18df Mon Sep 17 00:00:00 2001 From: Peisong Xiao Date: Sun, 8 Feb 2026 18:23:49 -0500 Subject: [PATCH] fixed syntax issue --- src/markdown_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/markdown_utils.py b/src/markdown_utils.py index 8ae44c2..9769166 100644 --- a/src/markdown_utils.py +++ b/src/markdown_utils.py @@ -66,7 +66,7 @@ def convert_markdown( def wrap_blocks(html: str) -> str: if not block_html: return html - return f\"\\n{html}\\n\" + return f"\n{html}\n" if renderer == "default": try: