feat(ui): Integrate imgui_markdown and professional fonts for rich text rendering

This commit is contained in:
2026-03-08 23:07:42 -04:00
parent e802c6675f
commit 5f0168c4f2
10 changed files with 97 additions and 8 deletions

View File

@@ -1,12 +1,12 @@
# Implementation Plan: Markdown Support & Syntax Highlighting
## Phase 1: Markdown Integration & Setup
- [ ] Task: Research and configure `imgui_markdown` within the existing `imgui-bundle` environment.
- [ ] Identify required font assets for Markdown (bold, italic, headers).
- [ ] Create a `MarkdownRenderer` wrapper class in `src/markdown_helper.py` to manage styling and callbacks (links, etc.).
- [ ] Task: Implement basic Markdown rendering in a test panel.
- [ ] Verify that bold, italic, and headers render correctly using the defined theme fonts.
- [ ] Task: Conductor - User Manual Verification 'Phase 1: Markdown Integration' (Protocol in workflow.md)
- [x] Task: Research and configure `imgui_markdown` within the existing `imgui-bundle` environment.
- [x] Identify required font assets for Markdown (bold, italic, headers).
- [x] Create a `MarkdownRenderer` wrapper class in `src/markdown_helper.py` to manage styling and callbacks (links, etc.).
- [x] Task: Implement basic Markdown rendering in a test panel.
- [x] Verify that bold, italic, and headers render correctly using the defined theme fonts.
- [x] Task: Conductor - User Manual Verification 'Phase 1: Markdown Integration' (Protocol in workflow.md)
## Phase 2: Syntax Highlighting Implementation
- [ ] Task: Implement syntax highlighting for PowerShell, Python, and JSON/TOML.