(json map[string]interface{})
| 405 | } |
| 406 | |
| 407 | func JSON(json map[string]interface{}) Data { |
| 408 | return MakeData(MIMETypeJSON, json) |
| 409 | } |
| 410 | |
| 411 | func Latex(latex string) Data { |
| 412 | return MakeData3(MIMETypeLatex, latex, "$"+strings.Trim(latex, "$")+"$") |
nothing calls this directly
no test coverage detected