Allow unicode letters/numbers in topics (#597)

هذا الالتزام موجود في:
Thomas Miceli
2026-01-25 22:08:14 +08:00
ملتزم من قبل GitHub
الأصل a17effb10f
التزام 67f7c4cadd

عرض الملف

@@ -92,7 +92,7 @@ func validateGistTopics(fl validator.FieldLevel) bool {
if len(tag) > 50 {
return false
}
if !regexp.MustCompile(`^[a-zA-Z0-9-]+$`).MatchString(tag) {
if !regexp.MustCompile(`^[\p{L}\p{N}-]+$`).MatchString(tag) {
return false
}
}