(html string)
| 393 | } |
| 394 | |
| 395 | func HTML(html string) Data { |
| 396 | return MakeData(MIMETypeHTML, html) |
| 397 | } |
| 398 | |
| 399 | func JavaScript(javascript string) Data { |
| 400 | return MakeData(MIMETypeJavaScript, javascript) |
nothing calls this directly
no test coverage detected