I am struggling in using markdown with hugo. I have the hugo-creative-theme as an example, and now I am trying to insert an link. For example like this (in the config.toml file):
[params.hero]
slogan = "This is an [example](http://example.com)"
But the markdown is not converted to an link. Why?
You probably have to look inside the theme and see where the .Params.hero.slogan is used.
As you can see subtitle is passed to markdownify but slogan is not. You can set the link in subtitle or modify the theme and pass slogan to markdownify like it is done for subtitle.