(text string)
| 167 | } |
| 168 | |
| 169 | func textWidgetHTML(text string) Widget { |
| 170 | return Widget{TextParagraph: &TextParagraph{Text: text}} |
| 171 | } |
| 172 | |
| 173 | func escapeText(text string) string { |
| 174 | return strings.ReplaceAll(html.EscapeString(text), """, """) |
no outgoing calls
no test coverage detected