Merge pull request #1269 from aliou/fix/export-ansi-indentation

fix(coding-agent): preserve indentation in ANSI-rendered HTML export
This commit is contained in:
Mario Zechner
2026-02-05 03:13:40 +01:00
committed by GitHub
2 changed files with 5 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
### Fixed
- Fixed HTML export losing indentation in ANSI-rendered tool output (e.g. JSON code blocks in custom tool results) ([#1269](https://github.com/badlogic/pi-mono/pull/1269) by [@aliou](https://github.com/aliou))
- Fixed images being silently dropped when `prompt()` is called with both `images` and `streamingBehavior` during streaming. `steer()`, `followUp()`, and the corresponding RPC commands now accept optional images. ([#1271](https://github.com/badlogic/pi-mono/pull/1271) by [@aliou](https://github.com/aliou))
## [0.51.6] - 2026-02-04

View File

@@ -503,6 +503,10 @@
display: block;
}
.ansi-line {
white-space: pre-wrap;
}
.tool-images {
}