mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	1. The `og:description` should be "a one to two sentence description of
your object"
* It shouldn't output all the user inputted content -- it would be
pretty huge.
    * Maybe it only needs at most 300 bytes.
2. Do not render commit message as HTML
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			904 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			904 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2023 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package templates
 | 
						|
 | 
						|
import (
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/base"
 | 
						|
)
 | 
						|
 | 
						|
type StringUtils struct{}
 | 
						|
 | 
						|
var stringUtils = StringUtils{}
 | 
						|
 | 
						|
func NewStringUtils() *StringUtils {
 | 
						|
	return &stringUtils
 | 
						|
}
 | 
						|
 | 
						|
func (su *StringUtils) HasPrefix(s, prefix string) bool {
 | 
						|
	return strings.HasPrefix(s, prefix)
 | 
						|
}
 | 
						|
 | 
						|
func (su *StringUtils) Contains(s, substr string) bool {
 | 
						|
	return strings.Contains(s, substr)
 | 
						|
}
 | 
						|
 | 
						|
func (su *StringUtils) Split(s, sep string) []string {
 | 
						|
	return strings.Split(s, sep)
 | 
						|
}
 | 
						|
 | 
						|
func (su *StringUtils) Join(a []string, sep string) string {
 | 
						|
	return strings.Join(a, sep)
 | 
						|
}
 | 
						|
 | 
						|
func (su *StringUtils) Cut(s, sep string) []any {
 | 
						|
	before, after, found := strings.Cut(s, sep)
 | 
						|
	return []any{before, after, found}
 | 
						|
}
 | 
						|
 | 
						|
func (su *StringUtils) EllipsisString(s string, max int) string {
 | 
						|
	return base.EllipsisString(s, max)
 | 
						|
}
 |