From 9d2382cf5f10f06245d5f0cc7b8b250e6e19d06e Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Sun, 23 Mar 2025 18:53:35 +0800 Subject: Add MathML notation --- main.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'main.go') diff --git a/main.go b/main.go index 342138e..77f1456 100644 --- a/main.go +++ b/main.go @@ -39,11 +39,13 @@ func main() { } authPage := func(message string) { - _ = tmpl.Execute(writer, tparams{ + err := tmpl.Execute(writer, tparams{ Identifier: base64.StdEncoding.EncodeToString(identifier), Message: message, Global: global, }) + if err != nil { + } } if request.ParseForm() != nil { -- cgit v1.2.3