Skip to content

Commit

Permalink
Separate developers by |
Browse files Browse the repository at this point in the history
but don't leave a trailing |
  • Loading branch information
Philippus committed Nov 5, 2024
1 parent fe0971e commit 6b09710
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,12 @@ <h4>Documentation</h4>
@if(artifact.developers.nonEmpty){
@info("Developers"){
<div class="developers">
@for(developer <- artifact.developers) {
@for((developer, i) <- artifact.developers.zipWithIndex) {
<span>
@if(i != 0){ | }
<a href="@developer.url">
@developer.name
</a> |
</a>
</span>
}
</div>
Expand Down Expand Up @@ -142,7 +143,7 @@ <h4>@Formats.plural(directDeps.size, "Dependency")</h4>
<div class="row">
<div class="col-xs-9">
<a href="@dep.url">@dep.groupIdAndName</a>
@if(dep.artifactDep.scope.value != "compile") {
@if(dep.artifactDep.scope.value != "compile") {
<span class="label label-default">@dep.artifactDep.scope</span>
}
</div>
Expand Down

0 comments on commit 6b09710

Please sign in to comment.