(text string)
| 163 | } |
| 164 | |
| 165 | func textWidget(text string) Widget { |
| 166 | return textWidgetHTML(escapeText(text)) |
| 167 | } |
| 168 | |
| 169 | func textWidgetHTML(text string) Widget { |
| 170 | return Widget{TextParagraph: &TextParagraph{Text: text}} |
no test coverage detected