Generate custom hyperlinks

Parts of our documentation is generated by calls to julia functions of our home brewed MyDocumentationUtil.jl.
This package can for example create a vector of dependencies to other packages, etc…

@eval
using MyDocumentationUtil
deps = MyDocumentationUtil.get_package_dependencies("MyPackage")
join(deps, ", ")

This code snippet will generate a comma separated list of the dependencies.

We would like to show this dependencies as hyperlinks.

I did this simple test to check if I was able to insert an arbitrary html tag generated by julia in the @eval block:

@eval
myUrl = "<a href=\"https://www.google.com\">Google</a>"

Which results in the following escaped html:
&lt;a href=&quot;https://www.google.com&quot;&gt;Google&lt;/a&gt;

Any idea on how to insert html tags generated by some julia code? without using Literate.jl or any other package if possible