mirror of
https://github.com/go-gitea/gitea.git
synced 2025-04-21 00:48:43 +03:00

* Fix #27645 * Add config options `MATH_CODE_BLOCK_DETECTION`, problematic syntaxes are disabled by default * Fix #33639 * Add config options `RENDER_OPTIONS_*`, old behaviors are kept
21 lines
700 B
TypeScript
21 lines
700 B
TypeScript
import {svg} from '../svg.ts';
|
|
import {queryElems} from '../utils/dom.ts';
|
|
|
|
export function makeCodeCopyButton(): HTMLButtonElement {
|
|
const button = document.createElement('button');
|
|
button.classList.add('code-copy', 'ui', 'button');
|
|
button.innerHTML = svg('octicon-copy');
|
|
return button;
|
|
}
|
|
|
|
export function initMarkupCodeCopy(elMarkup: HTMLElement): void {
|
|
// .markup .code-block code
|
|
queryElems(elMarkup, '.code-block code', (el) => {
|
|
if (!el.textContent) return;
|
|
const btn = makeCodeCopyButton();
|
|
// remove final trailing newline introduced during HTML rendering
|
|
btn.setAttribute('data-clipboard-text', el.textContent.replace(/\r?\n$/, ''));
|
|
el.after(btn);
|
|
});
|
|
}
|