function wrapHashtags(text) {
const pattern = /#\w+/g;
const matches = text.match(pattern);
if (!matches) return text;
matches.forEach(match => {
const link = `<a href="site.ru/tag/${match}">${match}</a>`;
text = text.replace(match, link);
});
return text;
}
const text = 'Тест на изменение тегов #один и #two';
const result = wrapHashtags(text);
console.log(result);