(path string)
| 60 | } |
| 61 | |
| 62 | func mustReadFile(path string) string { |
| 63 | bytes, err := os.ReadFile(path) |
| 64 | check(err) |
| 65 | return string(bytes) |
| 66 | } |
| 67 | |
| 68 | func markdown(src string) string { |
| 69 | return string(blackfriday.Run([]byte(src))) |
no test coverage detected