| | |
| | |
| | |
| | |
| | export function encodeHTML(source: string) { |
| | return source |
| | .replace(/&/g, '&') |
| | .replace(/</g, '<') |
| | .replace(/>/g, '>') |
| | .replace(/"/g, '"') |
| | .replace(/'/g, ''') |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | export function includeCode(text: string | null | undefined) { |
| | const regexp = /^(?:\s{4}|\t).+/gm |
| | return !!(text?.includes(' = ') || text?.match(regexp)) |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | export function copyText(options: { text: string; origin?: boolean }) { |
| | const props = { origin: true, ...options } |
| |
|
| | let input: HTMLInputElement | HTMLTextAreaElement |
| |
|
| | if (props.origin) |
| | input = document.createElement('textarea') |
| | else |
| | input = document.createElement('input') |
| |
|
| | input.setAttribute('readonly', 'readonly') |
| | input.value = props.text |
| | document.body.appendChild(input) |
| | input.select() |
| | if (document.execCommand('copy')) |
| | document.execCommand('copy') |
| | document.body.removeChild(input) |
| | } |
| |
|