diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2025-04-05 11:56:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-05 11:56:48 +0800 |
commit | e1c2d05bde6e42a86cb90c1c07e882bda313cd8f (patch) | |
tree | 8783c443aa254fbf7d7e35624b4a63c37ee67363 /modules/util | |
parent | ee6929d96b6d230ede18360cf663f32b5e641910 (diff) | |
download | gitea-main.tar.gz gitea-main.zip |
* Fix #27645
* Add config options `MATH_CODE_BLOCK_DETECTION`, problematic syntaxes
are disabled by default
* Fix #33639
* Add config options `RENDER_OPTIONS_*`, old behaviors are kept
Diffstat (limited to 'modules/util')
-rw-r--r-- | modules/util/util.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/util/util.go b/modules/util/util.go index 72fcddbe13..dd8e073888 100644 --- a/modules/util/util.go +++ b/modules/util/util.go @@ -219,6 +219,13 @@ func IfZero[T comparable](v, def T) T { return v } +func IfEmpty[T any](v, def []T) []T { + if len(v) == 0 { + return def + } + return v +} + // OptionalArg helps the "optional argument" in Golang: // // func foo(optArg ...int) { return OptionalArg(optArg) } |