Skip to content

Commit eef8343

Browse files
Remove trailing whitespace on package links (#1204)
This change fixes the link as described in this issue: https://stackoverflow.com/a/73074209
1 parent dc5dda3 commit eef8343

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

datafiles/templates/Html/package-page.html.st

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<h1><a href="$baseurl$/package/$package.name$">$package.name$</a>$if(package.optional.hasSynopsis)$: <small>$package.optional.synopsis$</small>$endif$</h1>
3232
<div style="font-size: small">
3333
[ $tags$ ]
34-
[ <a href="/package/$package.name$/tags/edit">Propose Tags </a> ]
34+
[ <a href="/package/$package.name$/tags/edit">Propose Tags</a> ]
3535
</div>
3636

3737
$if(isDeprecated)$
@@ -187,9 +187,7 @@
187187
<tr>
188188
<th>Home page</th>
189189
<td class="word-wrap">
190-
<a href=$package.optional.homepage$>
191-
$package.optional.homepage$
192-
</a>
190+
<a href=$package.optional.homepage$>$package.optional.homepage$</a>
193191
</td>
194192
</tr>
195193
$endif$
@@ -198,9 +196,7 @@
198196
<tr>
199197
<th>Bug&nbsp;tracker</th>
200198
<td class="word-wrap">
201-
<a href="$package.optional.bugTracker$">
202-
$package.optional.bugTracker$
203-
</a>
199+
<a href="$package.optional.bugTracker$">$package.optional.bugTracker$</a>
204200
</td>
205201
</tr>
206202
$endif$

0 commit comments

Comments
 (0)