STRUCT
MarkdownLinkRender an HTML link in Markdown format
MarkdownLink(text: "Google", url: "https://example.com").markdownWould render as:
[Google](https://example.com)
textText to display as hyper-linked.
urlLink URL, can be absolute, relative, or #local.
markdownGenerated Markdown output
init(text:url:)MarkdownLink initializer
- Parameters:
- text: Text to display as hyper-linked.
- url: Link URL, can be absolute, relative, or #local.