"Double id": How can I handle absolute links with urls including "?id=..."

e.g. if I want to link to https://play.google.com/store/apps/details?id=com.mediocre.dirac&hl=de
If I use

[Testlink](https://play.google.com/store/apps/details?hl=de&target=_blank&id=com.mediocre.dirac)

it does not work, as Grav is interpreting the id as a css id.
Grav is really great, but I got stuck with this. Any help would be very much appreciated - and thanks a lot in advance!
Benjamin

I just found out, I can disable the id parsing by adding “&noprocess” a the end of the url. But then it seems impossible to use Grav features (resize?) or target=_blank. Or is there a way?
e.g.
[Testlink](https://play.google.com/store/apps/details?hl=de&target=_blank&id=com.mediocre.dirac&noprocess)

&noprocess is the way to go, but you can still use plain HTML links if this is getting in the way of other functionality

Ok, I will go with plain HTML links here. Anyway, this is rather a special case. Thanks a lot for your help!