mirror of
				https://github.com/Theodor-Springmann-Stiftung/musenalm.git
				synced 2025-11-03 19:55:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			139 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			139 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package functions
 | 
						|
 | 
						|
import "html/template"
 | 
						|
 | 
						|
func Safe(s string) template.HTML {
 | 
						|
	if len(s) == 0 {
 | 
						|
		return ""
 | 
						|
	}
 | 
						|
	return template.HTML(s)
 | 
						|
}
 |