(markdown string)
| 413 | } |
| 414 | |
| 415 | func Markdown(markdown string) Data { |
| 416 | return MakeData(MIMETypeMarkdown, markdown) |
| 417 | } |
| 418 | |
| 419 | func Math(latex string) Data { |
| 420 | return MakeData3(MIMETypeLatex, latex, "$$"+strings.Trim(latex, "$")+"$$") |
nothing calls this directly
no test coverage detected