mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 06:24:11 +01:00 
			
		
		
		
	Strip trailing newline in markdown code copy (#29019)
Behaviour now matches GH. Safeguard added in the for loop because `textContent` may be null in which case it does not make sense to render the copy button.
This commit is contained in:
		
							parent
							
								
									c3e462921e
								
							
						
					
					
						commit
						b71850ea73
					
				@ -12,8 +12,10 @@ export function renderCodeCopy() {
 | 
			
		||||
  if (!els.length) return;
 | 
			
		||||
 | 
			
		||||
  for (const el of els) {
 | 
			
		||||
    if (!el.textContent) continue;
 | 
			
		||||
    const btn = makeCodeCopyButton();
 | 
			
		||||
    btn.setAttribute('data-clipboard-text', el.textContent);
 | 
			
		||||
    // remove final trailing newline introduced during HTML rendering
 | 
			
		||||
    btn.setAttribute('data-clipboard-text', el.textContent.replace(/\r?\n$/, ''));
 | 
			
		||||
    el.after(btn);
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user