This commit is contained in:
tree 2022-01-01 11:29:40 +01:00
rodič 3360e84fe5
revize 4d5cc09763
2 změnil soubory, kde provedl 6 přidání a 5 odebrání

Zobrazit soubor

@ -24,9 +24,9 @@
twitter: jurbed
bio: Podnikatel, hacker a milovník svobody
orgs: |
Spoluzakladatel [Hacktrophy](https://hacktrophy.com/sk/), člen [Paralelné Polis](https://paralelnapolis.sk/)
Spoluzakladatel [Hacktrophy](https://hacktrophy.com/sk/), člen [Paralelné Polis](https://paralelnapolis.sk)
web:
url: https://juraj.bednar.io/
url: https://juraj.bednar.io
lead: true
- name: Vladimír Pinker
nickname: KryptoVláďa
@ -49,7 +49,7 @@
twitter: petrmara
bio: Technologický optimista, sběratel NFT
web:
url: https://www.petrmara.com/
url: https://www.petrmara.com
lead: true
- name: Petr Menšík
twitter: petr_mensik
@ -68,7 +68,7 @@
Analytik v [INESS](https://www.iness.sk), pedagog na [CEVRO Institutu](https://www.cevroinstitut.cz/cs/pedagog/ing-robert-chovanculiak-ph-d/)
web:
name: Pokrok bez povolenia (newsletter)
url: https://robertchovanculiak.substack.com/
url: https://robertchovanculiak.substack.com
lead: true
- name: Tomáš Zdražil
twitter: investree_cz

Zobrazit soubor

@ -13,7 +13,8 @@ const methods = {
const speakersTableArr = [[ 'Jméno', 'Organizace' ]]
for (const speaker of speakers) {
speakersTableArr.push([
('**' + (speaker.twitter ? `[${speaker.name}](https://twitter.com/${speaker.twitter})` : speaker.name) + '**') + (speaker.nickname ? ` (${speaker.nickname})` : ''),
const name = `**${speaker.name}**`
(speaker.twitter ? `[${name}](https://twitter.com/${speaker.twitter})` : name) + (speaker.nickname ? ` (${speaker.nickname})` : ''),
speaker.orgs ? speaker.orgs.trim() : ''
])
}