How to create Markdown anchor links (non-header)?

To include HTML with your markdown, you need to configure the markdown renderer in your config.toml file:

[markup.goldmark.renderer]
unsafe = true

I am unable to reproduce your problem with **Test(Test)**. This renders as:

<strong>Test(Test)</strong>
1 Like