We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1d65cfb + 87eb899 commit 661ad44Copy full SHA for 661ad44
1 file changed
pkg/tui/components/markdown/renderer.go
@@ -14,6 +14,9 @@ func NewRenderer(width int) *glamour.TermRenderer {
14
customDarkStyle.Document.BlockPrefix = ""
15
customDarkStyle.Document.BlockSuffix = ""
16
17
+ // The default indent token is buggy. It breaks line splitting.
18
+ customDarkStyle.BlockQuote.IndentToken = nil
19
+
20
r, _ := glamour.NewTermRenderer(
21
glamour.WithWordWrap(min(width, 120)),
22
glamour.WithStyles(customDarkStyle),
0 commit comments