diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 18:53:35 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 18:53:35 +0800 |
commit | 9d2382cf5f10f06245d5f0cc7b8b250e6e19d06e (patch) | |
tree | 2d22b23e6d3322afa06fd5fd8687809b95a75e18 /main.go | |
parent | tmpl.go: Remove unnecessary version prose (diff) | |
download | powxy-9d2382cf5f10f06245d5f0cc7b8b250e6e19d06e.tar.gz powxy-9d2382cf5f10f06245d5f0cc7b8b250e6e19d06e.tar.zst powxy-9d2382cf5f10f06245d5f0cc7b8b250e6e19d06e.zip |
Add MathML notation
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 { |