ref: 265035f54dcc1d17f0fc450976a0ad5fe344cdc1
parent: 0a7455c6a861565d74e3bff9d0cd87bd391db14f
author: penny <penny@limitedideas.org>
date: Sun Aug 3 20:10:17 EDT 2025
format edits the standard way
--- a/mastodon.go
+++ b/mastodon.go
@@ -172,7 +172,8 @@
}
func formatEdit(post *mastodon.Status, index string) string {- return fmt.Sprintf("\r%v <%v> EDITED: %v", index, post.Account.Username, html2text.HTML2Text(post.Content))+ editString := fmt.Sprintf(" %v EDITED:", post.Account.Username)+ return formatStatusDetailed(post, index, editString)
}
func printMastodonErr(err error) {--
⑨