Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
Formatting checksum table contents
Browse files Browse the repository at this point in the history
  • Loading branch information
evertonfraga committed Nov 15, 2017
1 parent 3d64052 commit c623b6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpTasks/publishing.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ gulp.task('upload-binaries', (cb) => {
// String manipulation to create a checksums table
body: String.concat('File | Checksum (SHA256)\n-- | --', checksums.map((e) => {
const line = e.replace('\n', '').split(' ');
return `${line[1]} | ${line[0]}`;
return `<sub>${line[1]}</sub> | <sub>\`${line[0]}\`</sub>`;
}).join('\n'))
})
});
Expand Down

0 comments on commit c623b6d

Please sign in to comment.