32bf0415/html_components/strings.go
1970-01-01 00:00:00 +00:00

12 lines
182 B
Go

package html_components
import "fmt"
func ShortenLongText(text string) string {
length := 50
if len(text) > length {
return fmt.Sprint(text[0:length], "...")
}
return text
}