Merge commit '683a7d3bc2' into feat/rename-searchspace-to-workspace

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-06-29 17:55:15 -07:00
commit 2836654701
27 changed files with 543 additions and 323 deletions

View file

@ -145,7 +145,7 @@ def _render_block(
code_text = _render_inline_content(content) if content else ""
lines.append(f"{prefix}```{language}")
for code_line in code_text.split("\n"):
lines.append(f"{prefix}{code_line}")
lines.append(code_line)
lines.append(f"{prefix}```")
elif block_type == "table":