MarkdownLinkFormatter formats link address and title into Markdown style.
(link, text string)
| 270 | |
| 271 | // MarkdownLinkFormatter formats link address and title into Markdown style. |
| 272 | func MarkdownLinkFormatter(link, text string) string { |
| 273 | return "[" + text + "](" + link + ")" |
| 274 | } |
no outgoing calls
no test coverage detected