From a35b9da282154c6a88550a68e130a5b161645ebc Mon Sep 17 00:00:00 2001 From: Gabe Cook Date: Thu, 21 Nov 2024 01:28:18 -0600 Subject: [PATCH] fix: Support bold ANSI escape sequence --- ansi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansi.go b/ansi.go index 5e625e5..ed6422f 100644 --- a/ansi.go +++ b/ansi.go @@ -138,7 +138,7 @@ func (p *dispatcher) CsiDispatch(s ansi.CsiSequence) { case 0: reset() case 1: - // span.CreateAttr("font-weight", "bold") + span.CreateAttr("font-weight", "bold") p.lines[p.row].AddChild(span) case 9: span.CreateAttr("text-decoration", "line-through")