Skip to content

Commit

Permalink
changed preferences to emojis
Browse files Browse the repository at this point in the history
  • Loading branch information
clsource committed Apr 30, 2024
1 parent 0a7953f commit b260238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/write-readme.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ json.people.sort(function (a, b) {
});

// Generate with proper formating
const header = `|Nombre|Social|Ocupación|Temas|Ubicación|Preferencias|
const header = `|Nombre|Social|Ocupación|Temas|Ubicación|Emojis|
|---|---|---|---|---|---|
`;

Expand Down Expand Up @@ -54,7 +54,7 @@ const peopleList = json.people

const location = `${person.city} / ${person.country} ${flags[person.country.trim().toLowerCase()]}`;

return `|**[${person.name}](${person.scheduling})**|${socials.join(", ")}|${person.title} en ${person.company}|${person.topics.join(", ")}.|${location}|${person.preferences.join(", ")} ${person.emoticons.map((item) => word2emoticon(item)).join(",")}|`;
return `|**[${person.name}](${person.scheduling})**|${socials.join(", ")}|${person.title} en ${person.company}|${person.topics.join(", ")}.|${location}|${person.emojis.join(", ")} ${person.emoticons.map((item) => word2emoticon(item)).join(",")}|`;
})
.join("\n");

Expand Down

0 comments on commit b260238

Please sign in to comment.