Skip to content

Commit 6f8ee47

Browse files
committed
v5.0.091.1 patch
1 parent d841781 commit 6f8ee47

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

scripts/change_log.js

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@
5252
font = 'NotoSans-Regular'
5353
formatting = '';
5454
endformatting = '';
55-
lineformatting = '';
55+
lineformatting = '<br>';
5656
} else if (line.startsWith('-')) {
5757
color = '#ffffff';
5858
size = '20px';
5959
font = 'NotoSans-Regular'
6060
formatting = '';
6161
endformatting = '';
62-
lineformatting = '';
62+
lineformatting = '<br>';
6363
} else if (line.startsWith('#')) {
6464
line = line.replace(/^# \s*/, '');
6565
color = '#ffffff';
@@ -68,7 +68,14 @@
6868
formatting = '<center>';
6969
endformatting = '</center>';
7070
lineformatting = '<hr style="opacity: 0.25;">';
71-
}
71+
} else if (line.startsWith('*')) {
72+
color = '#ffffff';
73+
size = '20px';
74+
font = 'NotoSans-Regular'
75+
formatting = '';
76+
endformatting = '';
77+
lineformatting = '<br>';
78+
}
7279
return `${lineformatting}<span style="color: ${color}; font-size: ${size}; font-family: ${font};">${formatting}${line}${endformatting}</span>`;
7380
}).join('');
7481

0 commit comments

Comments
 (0)