strip_tags

strip_tags

func strip_tags(content string) string {
	re := regexp.MustCompile(`<(.|\n)*?>`)
	return re.ReplaceAllString(content,"")
}