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. Co-authored-by: silverwind <me@silverwind.io>
This commit is contained in:
parent
2588d73ebf
commit
5d1abdce3e
|
@ -12,8 +12,10 @@ export function renderCodeCopy() {
|
||||||
if (!els.length) return;
|
if (!els.length) return;
|
||||||
|
|
||||||
for (const el of els) {
|
for (const el of els) {
|
||||||
|
if (!el.textContent) continue;
|
||||||
const btn = makeCodeCopyButton();
|
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);
|
el.after(btn);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue