all repos — honk @ 9262fbf32b44f4e68db4c3c2ade9da4589469a65

my fork of honk

maybe don't loop infinitely
Ted Unangst tedu@tedunangst.com
Sun, 06 Feb 2022 03:35:27 -0500
commit

9262fbf32b44f4e68db4c3c2ade9da4589469a65

parent

cbc2665446d677cb5c022e0f0905b69327b7349c

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M hoot.gohoot.go

@@ -88,7 +88,7 @@ }

if author != wanted { continue } - for img := imgsel.MatchFirst(twp); img != nil; imgsel.MatchFirst(twp) { + for _, img := range imgsel.MatchAll(twp) { img.Parent.RemoveChild(img) div.AppendChild(img) }