My HTML currently contains a routerLink like below, which works nicely
<a mat-button [routerLink]="['/some','route', hash]">Click Here</a>
How can I replace the text "Click Here" with the actual link generated by routerLink? Such that it looks like plain text, like
Your link is: https://localhost:4200/some/route/deadbeef
"deadbeef" is the hash value here.