Skip to content

Commit

Permalink
Use single space after commas in index-list.html
Browse files Browse the repository at this point in the history
This is unnecessary since in HTML whitespace is collapsed
when rendering the page.

Note:
The replacement command that's removed in this commit
was first introduced in commit 6c29e87,
when the `helpers/generate-index-list-html.js` file
was still called `lib/create-catalog.js`.
  • Loading branch information
waldyrious committed Jan 6, 2023
1 parent 00be3ae commit d9ef9f3
Show file tree
Hide file tree
Showing 2 changed files with 2,428 additions and 2,428 deletions.
4 changes: 2 additions & 2 deletions helpers/generate-index-list-html.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ html += _.map(emojisList, (e, i) => {
<td>${e.group}</td>
<td>${e.subgroups}</td>
<td>${e.annotation}</td>
<td>${e.tags.replace(/,/g, ', ')}</td>
<td>${e.openmoji_tags.replace(/,/g, ', ')}</td>
<td>${e.tags}</td>
<td>${e.openmoji_tags}</td>
<td>${e.openmoji_author}</td>
<td><a download href="src/${e.group +'/'+ e.subgroups +'/'+ e.hexcode +'.svg'}">⬇</a></td>
</tr>`;
Expand Down
Loading

0 comments on commit d9ef9f3

Please sign in to comment.