shithub: hell

Download patch

ref: bc18dbd45d3daed41e2f0c177efc9a7d0ebdc025
parent: 6fcd1c0425bc3d0a08384baba1c9a448413790ad
author: penny <penny@limitedideas.org>
date: Mon Oct 6 14:57:46 EDT 2025

template doc comments

--- a/templater.go
+++ b/templater.go
@@ -5,11 +5,13 @@
 	"os"
 )
 
+// Holds a stringer and its template key
 type templateDefs struct {
 	stringer fmt.Stringer
 	key      string
 }
 
+// Renders line templates by turning keys into mapped stringers
 type templateRenderer struct {
 	tempdefs []*templateDefs
 }
--