aboutsummaryrefslogtreecommitdiffstats
path: root/modules/util
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2025-04-05 11:56:48 +0800
committerGitHub <noreply@github.com>2025-04-05 11:56:48 +0800
commite1c2d05bde6e42a86cb90c1c07e882bda313cd8f (patch)
tree8783c443aa254fbf7d7e35624b4a63c37ee67363 /modules/util
parentee6929d96b6d230ede18360cf663f32b5e641910 (diff)
downloadgitea-main.tar.gz
gitea-main.zip
Fix markdown render behaviors (#34122)HEADmain
* 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.go7
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) }