I cannot find a way to render a link and then comma or full stop right after it, without whitespace between the link and punctuation. Here is my initial attempt:
<p>
You can find more information #
<a href="@{SomeRouteR}">here
\.
or
<p>
You can find more information #
<a href="@{SomeRouteR}">here
.
This inserts space between the word “here” and “.”.
Another option is:
<p>
You can find more information #
<a href="@{SomeRouteR}">here</a>.
This looks like a win, but HTML is malformed:
<p>You can find more information <a href="…">here</a>.</a></p>
Is there a way to avoid whitespace between the link and punctuation/other element?