Skip to content

Commit

Permalink
Remove breaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Aug 25, 2024
1 parent c468704 commit 35a8814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jaraco/site/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def index(self):
filterfalse(exclude, filter(filters.Tag('not fork'), git.projects())),
key=lambda s: s.replace('/', '|'),
)
doc = '<br>\n'.join(map(self.make_badge, projects))
doc = '\n'.join(map(self.make_badge, projects))
return f'<html><head><style>{style}</style></head><body><div class="container">\n{doc}\n</div></body></html>'

def make_badge(self, project):
Expand Down

0 comments on commit 35a8814

Please sign in to comment.