Skip to content

Commit 4f01135

Browse files
committed
Reduce font size
1 parent 5cefc5b commit 4f01135

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/report.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function getTitle({
2222
.map((prettierVersion) => getPrettierVersionDescription(prettierVersion))
2323
.join(" VS ");
2424

25-
return `# **${text}**`;
25+
return `#### **${text}**`;
2626
}
2727

2828
const LONG_DIFF_THRESHOLD_IN_LINES = 50;
@@ -61,7 +61,7 @@ export function getReport({
6161
title,
6262
reports: results.map(({ repository, text }, index) => {
6363
const shortHash = repository.commit.slice(0, 7);
64-
const head = `## [${index + 1}/${results.length}] [${repository.repository}@${shortHash}](https://github.com/${repository.repository}/tree/${repository.commit})`;
64+
const head = `[${index + 1}/${results.length}] [${repository.repository}@${shortHash}](https://github.com/${repository.repository}/tree/${repository.commit})`;
6565
return {
6666
head,
6767
body: text,

0 commit comments

Comments
 (0)