diff --git a/src/renderRepoCard.js b/src/renderRepoCard.js
index 56fb7cdf8dd34..c3e5a602793a9 100644
--- a/src/renderRepoCard.js
+++ b/src/renderRepoCard.js
@@ -67,19 +67,23 @@ const renderRepoCard = (repo, options = {}) => {
${langName}
-
-
- ${totalStars}
-
+ ${(stargazers.totalCount > 0) ? `
+
+
+ ${totalStars}
+
+ ` : ''}
-
-
- ${totalForks}
-
+ ${(totalForks > 0) ? `
+
+
+ ${totalForks}
+
+ ` : ''}
`;
};