Fix markdown

This commit is contained in:
Yiorgis Gozadinos 2025-11-20 15:34:34 +02:00
parent 82831c8941
commit 8450c07085
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -27,6 +27,8 @@ except ImportError:
class InspectorApp(App): # type: ignore[misc]
"""Textual TUI for inspecting LanceDB data."""
TITLE = "haiku.rag DB Inspector"
CSS = """
Screen {
layout: grid;

View file

@ -51,8 +51,7 @@ class DetailView(VerticalScroll):
content_parts.append(f"**Updated:** {document.updated_at}")
content_parts.append("\n---\n")
content_parts.append("**Content:**\n")
content_parts.append(f"```\n{document.content}\n```")
content_parts.append(document.content)
await self.content_widget.update("\n\n".join(content_parts))
@ -88,7 +87,6 @@ class DetailView(VerticalScroll):
)
content_parts.append("\n---\n")
content_parts.append("**Content:**\n")
content_parts.append(f"```\n{chunk.content}\n```")
content_parts.append(chunk.content)
await self.content_widget.update("\n\n".join(content_parts))