mirror of https://github.com/mastodon/mastodon
				
				
				
			
							parent
							
								
									b7b331ad0d
								
							
						
					
					
						commit
						c75493755f
					
				@ -1,6 +1,5 @@
 | 
			
		||||
export const unescapeHTML = (html) => {
 | 
			
		||||
  const wrapper = document.createElement('div');
 | 
			
		||||
  html = html.replace(/<br \/>|<br>|\n/g, ' ');
 | 
			
		||||
  wrapper.innerHTML = html;
 | 
			
		||||
  wrapper.innerHTML = html.replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n').replace(/<[^>]*>/g, '');
 | 
			
		||||
  return wrapper.textContent;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
					Loading…
					
					
				
		Reference in New Issue