diff options
| author | Aiden Cline <[email protected]> | 2025-08-05 17:16:35 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-05 17:16:35 -0500 |
| commit | 677fb6032bfb1f79e62bc7ba6c311f91529ce4e8 (patch) | |
| tree | 254826aa50cc1af8465cf4a038c8effe454490eb | |
| parent | 49aa48ce5850eb97e4a145a1ee93794283a95790 (diff) | |
| download | opencode-677fb6032bfb1f79e62bc7ba6c311f91529ce4e8.tar.gz opencode-677fb6032bfb1f79e62bc7ba6c311f91529ce4e8.zip | |
fix: markdown table renders (#1623)
| -rw-r--r-- | packages/tui/internal/styles/markdown.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/tui/internal/styles/markdown.go b/packages/tui/internal/styles/markdown.go index 9ff87c4e6..d73c14101 100644 --- a/packages/tui/internal/styles/markdown.go +++ b/packages/tui/internal/styles/markdown.go @@ -285,6 +285,8 @@ func generateMarkdownStyleConfig(backgroundColor compat.AdaptiveColor) ansi.Styl StyleBlock: ansi.StyleBlock{ StylePrimitive: ansi.StylePrimitive{ BlockSuffix: "\n", + // TODO: find better way to fix markdown table renders + BackgroundColor: stringPtr(""), }, }, CenterSeparator: stringPtr("┼"), |
