shithub: hell

Download patch

ref: 70df97139bfcc188fea0840653f114454b02e55e
parent: a20b17aaece69ffc9854e3b35ccea5162019e7ff
author: penny <penny@limitedideas.org>
date: Wed Oct 8 21:23:22 EDT 2025

break the test

--- a/go.mod
+++ b/go.mod
@@ -18,3 +18,5 @@
 	golang.org/x/sys v0.34.0 // indirect
 	golang.org/x/text v0.27.0 // indirect
 )
+
+replace github.com/ergochat/readline => ./readline-fix
\ No newline at end of file
--- a/renderer_test.go
+++ b/renderer_test.go
@@ -33,7 +33,7 @@
 		// Mentions
 		{"<p>hello <a href=\"https://example.com\" class=\"mention\">username</a> world</p>", "hello username world"},
 		// a without href
-		{"<p>hello <a>world</a></p>", "hello [1]"}, // TODO: this is probably wrong
+		{"<p>hello <a>world</a></p>", "hello"}, // TODO: this is probably wrong
 	}
 	for _, param := range parameters {
 		sf := &StatusFormatter{
--