How can I prevent Angular 9 from rendering routerLink hrefs with URL encoding?
Here is a stackblitz example of the problem, of the below example:
https://angular-ivy-sxczmy.stackblitz.io/
typescript:
myurl = "/testing;parameter1=abc";
template:
<p>myurl = {{myurl}}<p>
<a [routerLink]="myurl">Testing</a>
Simplified Output:
<p>myurl = /testing;parameter1=abc</p>
<a href="/testing%3Bparameter1%3Dabc">Testing</a>
How do I prevent the href from rendering with %3B, %3D rather than semi-colon and equals?
Thank you!