Skip to content

Commit d67807b

Browse files
fix GitHub markdown rendering by removing space from badge style (#774)
While the redirect was working locally with curl, I suspect the space may be causing issues with GitHub's camo proxy. This suspicion is due to a test README I did which directly linked failed to render: ![image](https://img.shields.io/<...>label=openssf scorecard<...> But using the plus seemed to render. ![image](https://img.shields.io/<...>label=openssf+scorecard<...> Signed-off-by: Spencer Schrock <[email protected]>
1 parent bb1c3d1 commit d67807b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/server/badge.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929

3030
const (
3131
shieldsURL = "https://img.shields.io/ossf-scorecard"
32-
badgeLabel = "openssf scorecard"
32+
badgeLabel = "openssf+scorecard"
3333
defaultStyle = "flat"
3434
)
3535

0 commit comments

Comments
 (0)