リンクと句読点の間に空白を入れずに、リンクをレンダリングし、その直後にコンマまたはピリオドを表示する方法を見つけることができません。これが私の最初の試みです:
<p>
You can find more information #
<a href="@{SomeRouteR}">here
\.
また
<p>
You can find more information #
<a href="@{SomeRouteR}">here
.
これにより、「here」と「.」の間にスペースが挿入されます。
別のオプションは次のとおりです。
<p>
You can find more information #
<a href="@{SomeRouteR}">here</a>.
これは勝利のように見えますが、HTML の形式が正しくありません。
<p>You can find more information <a href="…">here</a>.</a></p>
リンクと句読点/その他の要素の間の空白を避ける方法はありますか?