Daily Shaarli

All links of one day in a single page.

May 23, 2024

HTML Tags You Might Not Know About - DEV Community
thumbnail

In this post, I will share some new and helpful html tags which are added in HTML5 to write easy and fast code to create complex, dynamic, engaging, and effective websites.

  • dialog
  • template
  • picture
  • meter
  • output
  • progress
  • mark
  • abbr
  • time
  • bdi
  • wbr
  • main
  • figcaption
Une expression régulière pour sélectionner tous les emojis | tzi.fr

Voici comment je fais pour rajouter automatiquement une balise autour des emojis présents dans mes articles :

function niceEmoji(text) {
  const emojiRegex = /(\p{ExtPict}(\u200d\p{ExtPict}|\p{EMod})*)/gu;
  return text.replace(emojiRegex, '<span class="u-emoji">$1</span>');
}