mirror of
https://github.com/Theodor-Springmann-Stiftung/lenz-web.git
synced 2025-10-29 01:05:32 +00:00
20 lines
238 B
Go
20 lines
238 B
Go
package functions
|
|
|
|
import (
|
|
"html/template"
|
|
)
|
|
|
|
func FirstLetter(s string) string {
|
|
if len(s) == 0 {
|
|
return ""
|
|
}
|
|
return string(s[:1])
|
|
}
|
|
|
|
func Safe(s string) template.HTML {
|
|
if len(s) == 0 {
|
|
return ""
|
|
}
|
|
return template.HTML(s)
|
|
}
|