const lead_announcement = `
I’m thrilled to share that I’ll be leading Asturian in Hugging Face’s collaborative annotation sprint! 🤗
I’ll be helping to build an open dataset to improve language models for our language. Do you want to join me? I’ll share more details about this soon!
` const recruit_collaborators = `Do you want to improve the quality of language models in Asturian?
Join me in this collaborative annotation sprint! No experience needed - simply follow the link to start annotating!` const recruit_leads = `
I’m thrilled to share that I’ll be leading Asturian in Hugging Face’s collaborative annotation sprint! 🤗
Would you like to lead the efforts in your own language? Check if it’s still listed!
` function createCard(title, text, url) { let url_text = text.replaceAll('', '').replaceAll('
', '%0A%0A') if (url) { let template = ` ` return template; } else { let template = ` ` return template; } } function addCardToContainer(language, link, customText) { const cardContainer = document.getElementById('card-container'); const cardHTML = createCard(language, link, customText); cardContainer.innerHTML += cardHTML; } addCardToContainer("Announce you've been selected to be a lead!", lead_announcement); addCardToContainer("Recuit collaborators for your language", recruit_collaborators, 'https://nataliaelv-language-leads-dashboard.hf.space/'); addCardToContainer("Recuit leads for other languages", recruit_leads, 'https://nataliaelv-language-leads-dashboard.hf.space/');