INNER CODE UNIT · Go
HTML
gopherdata/gophernotes · display.go:406
func HTML(html string) Data {
return MakeData(MIMETypeHTML, html)
}
func JavaScript(javascript string) Data {
return MakeData(MIMETypeJavaScript, javascript)
}
func JPEG(jpeg []byte) Data {
return MakeData(MIMETypeJPEG, jpeg)
}
func JSON(json map[string]interface{}) Data {
return MakeData(MIMETypeJSON, json)
}
func Latex(latex string) Data {
return MakeData3(MIMETypeLatex, latex, "$"+strings.Trim(latex, "$")+"$")