feat: add line number display to HTML export for read tool calls

Implements line number display in HTML exports for read tool calls, matching the TUI format.
When offset/limit parameters are provided, displays path:startLine-endLine in yellow color.

Fixes #166
This commit is contained in:
Mario Zechner 2025-12-10 22:05:14 +01:00
parent cf2f5742cc
commit 09a48fd1c3
2 changed files with 16 additions and 1 deletions

View file

@ -2,6 +2,10 @@
## [Unreleased]
### Added
- **HTML export line numbers**: Read tool calls in HTML exports now display line number ranges (e.g., `file.txt:10-20`) when offset/limit parameters are used, matching the TUI display format. Line numbers appear in yellow color for better visibility. ([#166](https://github.com/badlogic/pi-mono/issues/166))
## [0.18.1] - 2025-12-10
### Added