Insert a link with title inside blastula message for version 0.3.0

I would like to insert a link inside a blastula message. I am using the library version 0.3.0

In a markdown document I could do something like this:

[linked phrase](http://example.com)

What I managed to write for blastula is the following:

Link <- "www.example.com"

email <-
compose_email(
body = md(
paste0(
c("Hello,
first part of the text: "),
Link

, c(" second part of the text

"))))

but in this case the link url is visible in the email and I could not add the link title like this:
[linked phrase]

Does anybody know how to do it?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.