hyperlink function
Format the content
and the URL into a hyperlink (aka Markdown link), and optionally, add a title
that will be displayed on hover.
Implementation
String hyperlink(String content, String url, [String? title]) => '[$content](<$url>${title != null ? ' "$title"' : ''})';