Private
Public Access
0
0

save to compare

This commit is contained in:
2026-06-03 15:57:41 -04:00
parent 170983b98e
commit 4f4cf0baf4
2 changed files with 32 additions and 13 deletions
+24 -7
View File
@@ -58,7 +58,7 @@ class MarkdownRenderer:
self.options = imgui_md.MarkdownOptions()
# Base path for fonts (Inter family)
self.options.font_options.font_base_path = "fonts/Inter"
self.options.font_options.regular_size = 16.0
self.options.font_options.regular_size = 18.0
# Configure callbacks
self.options.callbacks.on_open_link = self._on_open_link
@@ -133,7 +133,7 @@ class MarkdownRenderer:
def flush_md() -> None:
if md_buf:
chunk = "".join(md_buf)
if chunk.strip():
if chunk:
self._render_md_no_bullet_overlap(chunk)
md_buf.clear()
@@ -173,8 +173,13 @@ class MarkdownRenderer:
continue
if i in table_at_line:
flush_md()
try: render_table(blocks[table_at_line[i]])
except Exception: pass
block = blocks[table_at_line[i]]
try:
render_table(block)
except Exception as e:
# Fallback: if table rendering fails, just append lines to md_buf
for line_idx in range(block.span[0], block.span[1]):
md_buf.append(lines[line_idx])
i = table_end[i]
continue
md_buf.append(line)
@@ -193,7 +198,7 @@ class MarkdownRenderer:
for m in list_pattern.finditer(chunk):
if m.start() > current_pos:
pre = chunk[current_pos:m.start()]
if pre.strip(): imgui_md.render(pre)
if pre: imgui_md.render(pre)
list_start = m.start()
indent_len = len(m.group("indent"))
i = list_start
@@ -211,11 +216,23 @@ class MarkdownRenderer:
i = line_end + 1
list_block = chunk[list_start:i]
for line in list_block.splitlines():
imgui.text(line) if line.strip() else imgui.spacing()
if not line.strip():
imgui.spacing()
continue
stripped = line.lstrip(" \t")
indent = len(line) - len(stripped)
if stripped.startswith(("- ", "* ", "+ ")):
imgui.bullet()
imgui.same_line()
imgui_md.render(stripped[2:])
else:
if indent > 0: imgui.indent(indent * 2)
imgui_md.render(stripped)
if indent > 0: imgui.unindent(indent * 2)
current_pos = i
if current_pos < len(chunk):
tail = chunk[current_pos:]
if tail.strip(): imgui_md.render(tail)
if tail: imgui_md.render(tail)
def render_unindented(self, text: str) -> None:
"""Render Markdown text with automatic unindentation."""