(data []byte, baseURL string, cfg *config.Config)
| 120 | } |
| 121 | |
| 122 | func applyMarkdown(data []byte, baseURL string, cfg *config.Config) string { |
| 123 | return applyMarkdownSpecial(data, baseURL, cfg, cfg.App.SingleUser) |
| 124 | } |
| 125 | |
| 126 | func disableYoutubeAutoplay(outHTML string) string { |
| 127 | for _, match := range youtubeReg.FindAllString(outHTML, -1) { |
no test coverage detected