No puede seleccionar más de 25 temas
			Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | function isInputFocused() {
  const activeElement = document.activeElement;
  return (
    activeElement.tagName === 'INPUT' ||
    activeElement.tagName === 'TEXTAREA' ||
    activeElement.isContentEditable
  );
}
document.addEventListener('keydown', function(event) {
  if (event.key === '/') {
    if (!isInputFocused()) {
      // Prevent "/" from being entered in the search box
      event.preventDefault();
      // Set the focus on the search box
      const searchBox = document.getElementById('search-box');
      searchBox.focus();
    }
  }
});
 |