| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604 |
- import { EditorView } from '@codemirror/view'
- import { Prec } from '@codemirror/state'
- import {
- insertPastedContent,
- pastedContent,
- storePastedContent,
- } from './pasted-content'
- export const pasteHtml = [
- Prec.highest(
- EditorView.domEventHandlers({
- paste(event, view) {
- const { clipboardData } = event
- if (!clipboardData) {
- return false
- }
- // allow pasting an image to create a figure
- if (clipboardData.files.length > 0) {
- return false
- }
- // only handle pasted HTML
- if (!clipboardData.types.includes('text/html')) {
- return false
- }
- // ignore text/html from VS Code
- if (
- clipboardData.types.includes('application/vnd.code.copymetadata') ||
- clipboardData.types.includes('vscode-editor-data')
- ) {
- return false
- }
- const html = clipboardData.getData('text/html').trim()
- const text = clipboardData.getData('text/plain').trim()
- if (html.length === 0) {
- return false
- }
- // convert the HTML to LaTeX
- try {
- const parser = new DOMParser()
- const { documentElement } = parser.parseFromString(html, 'text/html')
- // if the only content is in a code block, use the plain text version
- if (onlyCode(documentElement)) {
- return false
- }
- const latex = htmlToLaTeX(documentElement)
- // if there's no formatting, use the plain text version
- if (latex === text) {
- return false
- }
- view.dispatch(insertPastedContent(view, { latex, text }))
- view.dispatch(storePastedContent({ latex, text }, true))
- return true
- } catch (error) {
- console.error(error)
- // fall back to the default paste handler
- return false
- }
- },
- })
- ),
- pastedContent,
- ]
- const removeUnwantedElements = (
- documentElement: HTMLElement,
- selector: string
- ) => {
- for (const element of documentElement.querySelectorAll(selector)) {
- element.remove()
- }
- }
- // return true if the text content of the first <code> element
- // is the same as the text content of the whole document element
- const onlyCode = (documentElement: HTMLElement) =>
- documentElement.querySelector('code')?.textContent?.trim() ===
- documentElement.textContent?.trim()
- const htmlToLaTeX = (documentElement: HTMLElement) => {
- // remove style elements
- removeUnwantedElements(documentElement, 'style')
- // replace non-breaking spaces added by Chrome on copy
- processWhitespace(documentElement)
- // pre-process table elements
- processTables(documentElement)
- // protect special characters in non-LaTeX text nodes
- protectSpecialCharacters(documentElement)
- processMatchedElements(documentElement)
- const text = documentElement.textContent
- if (!text) {
- return ''
- }
- // normalise multiple newlines
- return text.replaceAll(/\n{2,}/g, '\n\n')
- }
- const processWhitespace = (documentElement: HTMLElement) => {
- const walker = document.createTreeWalker(
- documentElement,
- NodeFilter.SHOW_TEXT
- )
- for (let node = walker.nextNode(); node; node = walker.nextNode()) {
- if (node.textContent === ' ') {
- node.textContent = ' '
- }
- }
- }
- const isElementNode = (node: Node): node is HTMLElement =>
- node.nodeType === Node.ELEMENT_NODE
- // TODO: negative lookbehind once Safari supports it
- const specialCharacterRegExp = /(^|[^\\])([#$%&~_^\\{}])/g
- const specialCharacterReplacer = (
- _match: string,
- prefix: string,
- char: string
- ) => {
- if (char === '\\') {
- // convert `\` to `\textbackslash{}`, preserving subsequent whitespace
- char = 'textbackslash{}'
- }
- return `${prefix}\\${char}`
- }
- const protectSpecialCharacters = (documentElement: HTMLElement) => {
- const walker = document.createTreeWalker(
- documentElement,
- NodeFilter.SHOW_ELEMENT | NodeFilter.SHOW_TEXT,
- node =>
- isElementNode(node) && node.tagName === 'CODE'
- ? NodeFilter.FILTER_REJECT
- : NodeFilter.FILTER_ACCEPT
- )
- for (let node = walker.nextNode(); node; node = walker.nextNode()) {
- if (node.nodeType === Node.TEXT_NODE) {
- const text = node.textContent
- if (text) {
- // replace non-backslash-prefixed characters
- node.textContent = text.replaceAll(
- specialCharacterRegExp,
- specialCharacterReplacer
- )
- }
- }
- }
- }
- const processMatchedElements = (documentElement: HTMLElement) => {
- for (const item of selectors) {
- for (const element of documentElement.querySelectorAll<any>(
- item.selector
- )) {
- if (!item.match || item.match(element)) {
- // start the markup
- if (item.start) {
- const start = document.createTextNode(item.start(element))
- if (item.inside) {
- element.prepend(start)
- } else {
- element.before(start)
- }
- }
- // end the markup
- if (item.end) {
- const end = document.createTextNode(item.end(element))
- if (item.inside) {
- element.append(end)
- } else {
- element.after(end)
- }
- }
- }
- }
- }
- }
- const matchingParents = (element: HTMLElement, selector: string) => {
- const matches = []
- for (
- let ancestor = element.parentElement?.closest(selector);
- ancestor;
- ancestor = ancestor.parentElement?.closest(selector)
- ) {
- matches.push(ancestor)
- }
- return matches
- }
- const processTables = (element: HTMLElement) => {
- for (const table of element.querySelectorAll('table')) {
- // create a wrapper element for the table and the caption
- const container = document.createElement('div')
- container.className = 'ol-table-wrap'
- table.after(container)
- // move the caption (if it exists) into the container before the table
- const caption = table.querySelector('caption')
- if (caption) {
- container.append(caption)
- }
- // move the table into the container
- container.append(table)
- }
- }
- const cellAlignment = new Map([
- ['left', 'l'],
- ['center', 'c'],
- ['right', 'r'],
- ])
- const tabular = (element: HTMLTableElement) => {
- const definitions: Array<{
- alignment: string
- borderLeft: boolean
- borderRight: boolean
- }> = []
- const rows = element.querySelectorAll('tr')
- for (const row of rows) {
- const cells = [...row.childNodes].filter(
- element => element.nodeName === 'TD' || element.nodeName === 'TH'
- ) as Array<HTMLTableCellElement>
- let index = 0
- for (const cell of cells) {
- // NOTE: reading the alignment and borders from the first cell definition in each column
- if (definitions[index] === undefined) {
- const { textAlign, borderLeftStyle, borderRightStyle } = cell.style
- definitions[index] = {
- alignment: textAlign,
- borderLeft: visibleBorderStyle(borderLeftStyle),
- borderRight: visibleBorderStyle(borderRightStyle),
- }
- }
- index += Number(cell.getAttribute('colspan') ?? 1)
- }
- }
- for (let index = 0; index <= definitions.length; index++) {
- // fill in missing definitions
- const item = definitions[index] || {
- alignment: 'left',
- borderLeft: false,
- borderRight: false,
- }
- // remove left border if previous column had a right border
- if (item.borderLeft && index > 0 && definitions[index - 1]?.borderRight) {
- item.borderLeft = false
- }
- }
- return definitions
- .flatMap(definition => [
- definition.borderLeft ? '|' : '',
- cellAlignment.get(definition.alignment) ?? 'l',
- definition.borderRight ? '|' : '',
- ])
- .filter(Boolean)
- .join(' ')
- }
- const listDepth = (
- element: HTMLOListElement | HTMLUListElement | HTMLLIElement
- ): number => Math.max(0, matchingParents(element, 'ul,ol').length - 1)
- const listIndent = (
- element: HTMLOListElement | HTMLUListElement | HTMLLIElement
- ): string => '\t'.repeat(listDepth(element))
- type ElementSelector<T extends string, E extends HTMLElement = HTMLElement> = {
- selector: T
- match?: (element: E) => boolean
- start?: (element: E) => string
- end?: (element: E) => string
- inside?: boolean
- }
- const createSelector = <
- T extends string,
- E extends HTMLElement = T extends keyof HTMLElementTagNameMap
- ? HTMLElementTagNameMap[T]
- : HTMLElement
- >({
- selector,
- ...elementSelector
- }: ElementSelector<T, E>) => ({
- selector,
- ...elementSelector,
- })
- const headings = ['H1', 'H2', 'H3', 'H4', 'H5', 'H6']
- const isHeading = (element: HTMLElement | null) => {
- return element && headings.includes(element.nodeName)
- }
- const hasContent = (element: HTMLElement): boolean => {
- return Boolean(element.textContent && element.textContent.trim().length > 0)
- }
- type BorderStyle =
- | 'borderTopStyle'
- | 'borderRightStyle'
- | 'borderBottomStyle'
- | 'borderLeftStyle'
- const visibleBorderStyle = (style: CSSStyleDeclaration[BorderStyle]): boolean =>
- !!style && style !== 'none' && style !== 'hidden'
- const rowHasBorderStyle = (
- element: HTMLTableRowElement,
- style: BorderStyle
- ): boolean => {
- if (visibleBorderStyle(element.style[style])) {
- return true
- }
- const cells = element.querySelectorAll<HTMLTableCellElement>('th,td')
- return [...cells].every(cell => visibleBorderStyle(cell.style[style]))
- }
- const isTableRowElement = (
- element: Element | null
- ): element is HTMLTableRowElement => element?.tagName === 'TR'
- const nextRowHasBorderStyle = (
- element: HTMLTableRowElement,
- style: BorderStyle
- ) => {
- const { nextElementSibling } = element
- return (
- isTableRowElement(nextElementSibling) &&
- rowHasBorderStyle(nextElementSibling, style)
- )
- }
- const startMulticolumn = (element: HTMLTableCellElement): string => {
- const colspan = element.getAttribute('colspan') ?? 1
- const alignment = cellAlignment.get(element.style.textAlign) ?? 'l'
- return `\\multicolumn{${Number(colspan)}}{${alignment}}{`
- }
- const selectors = [
- createSelector({
- selector: 'b',
- match: element =>
- element.style.fontWeight !== 'normal' &&
- !isHeading(element.parentElement) &&
- hasContent(element),
- start: () => '\\textbf{',
- end: () => '}',
- }),
- createSelector({
- selector: '*',
- match: element =>
- parseInt(element.style.fontWeight) > 400 && hasContent(element),
- start: () => '\\textbf{',
- end: () => '}',
- inside: true,
- }),
- createSelector({
- selector: 'strong',
- match: element => hasContent(element),
- start: () => '\\textbf{',
- end: () => '}',
- }),
- createSelector({
- selector: 'i',
- match: element =>
- element.style.fontStyle !== 'normal' && hasContent(element),
- start: () => '\\textit{',
- end: () => '}',
- }),
- createSelector({
- selector: '*',
- match: element =>
- element.style.fontStyle === 'italic' && hasContent(element),
- start: () => '\\textit{',
- end: () => '}',
- }),
- createSelector({
- selector: 'em',
- match: element => hasContent(element),
- start: () => '\\textit{',
- end: () => '}',
- }),
- createSelector({
- selector: 'sup',
- match: element => hasContent(element),
- start: () => '\\textsuperscript{',
- end: () => '}',
- }),
- createSelector({
- selector: 'span',
- match: element =>
- element.style.verticalAlign === 'super' && hasContent(element),
- start: () => '\\textsuperscript{',
- end: () => '}',
- }),
- createSelector({
- selector: 'sub',
- match: element => hasContent(element),
- start: () => '\\textsubscript{',
- end: () => '}',
- }),
- createSelector({
- selector: 'span',
- match: element =>
- element.style.verticalAlign === 'sub' && hasContent(element),
- start: () => '\\textsubscript{',
- end: () => '}',
- }),
- createSelector({
- selector: 'a',
- match: element => !!element.href && hasContent(element),
- start: (element: HTMLAnchorElement) => `\\href{${element.href}}{`,
- end: element => `}`,
- }),
- createSelector({
- selector: 'h1',
- match: element => !element.closest('table') && hasContent(element),
- start: () => `\n\n\\section{`,
- end: () => `}\n\n`,
- }),
- createSelector({
- selector: 'h2',
- match: element => !element.closest('table') && hasContent(element),
- start: () => `\n\n\\subsection{`,
- end: () => `}\n\n`,
- }),
- createSelector({
- selector: 'h3',
- match: element => !element.closest('table') && hasContent(element),
- start: () => `\n\n\\subsubsection{`,
- end: () => `}\n\n`,
- }),
- createSelector({
- selector: 'h4',
- match: element => !element.closest('table') && hasContent(element),
- start: () => `\n\n\\paragraph{`,
- end: () => `}\n\n`,
- }),
- createSelector({
- selector: 'h5',
- match: element => !element.closest('table') && hasContent(element),
- start: () => `\n\n\\subparagraph{`,
- end: () => `}\n\n`,
- }),
- // TODO: h6?
- createSelector({
- selector: 'br',
- match: element => element.parentElement?.nodeName !== 'TD', // TODO: why?
- start: () => `\n\n`,
- }),
- createSelector({
- selector: 'code',
- match: element =>
- element.parentElement?.nodeName !== 'PRE' && hasContent(element),
- start: () => `\\verb|`,
- end: () => `|`,
- }),
- createSelector({
- selector: 'pre > code',
- match: element => hasContent(element),
- start: () => `\n\n\\begin{verbatim}\n`,
- end: () => `\n\\end{verbatim}\n\n`,
- }),
- createSelector({
- selector: '.ol-table-wrap',
- start: () => `\n\n\\begin{table}\n\\centering\n`,
- end: () => `\n\\end{table}\n\n`,
- }),
- createSelector({
- selector: 'table',
- start: element => `\n\\begin{tabular}{${tabular(element)}}`,
- end: () => `\\end{tabular}\n`,
- }),
- createSelector({
- selector: 'thead',
- start: () => `\n`,
- end: () => `\n`,
- }),
- createSelector({
- selector: 'tfoot',
- start: () => `\n`,
- end: () => `\n`,
- }),
- createSelector({
- selector: 'tbody',
- start: () => `\n`,
- end: () => `\n`,
- }),
- createSelector({
- selector: 'tr',
- start: element => {
- const borderTop = rowHasBorderStyle(element, 'borderTopStyle')
- return borderTop ? '\\hline\n' : ''
- },
- end: element => {
- const borderBottom = rowHasBorderStyle(element, 'borderBottomStyle')
- return borderBottom && !nextRowHasBorderStyle(element, 'borderTopStyle')
- ? '\n\\hline\n'
- : '\n'
- },
- }),
- createSelector({
- selector: 'tr > td:not(:last-child), tr > th:not(:last-child)',
- start: (element: HTMLTableCellElement) => {
- const colspan = element.getAttribute('colspan')
- return colspan ? startMulticolumn(element) : ''
- },
- end: element => {
- const colspan = element.getAttribute('colspan')
- return colspan ? `} & ` : ` & `
- },
- }),
- createSelector({
- selector: 'tr > td:last-child, tr > th:last-child',
- start: (element: HTMLTableCellElement) => {
- const colspan = element.getAttribute('colspan')
- return colspan ? startMulticolumn(element) : ''
- },
- end: element => {
- const colspan = element.getAttribute('colspan')
- return colspan ? `} \\\\` : ` \\\\`
- },
- }),
- createSelector({
- selector: 'caption',
- start: () => `\n\n\\caption{`,
- end: () => `}\n\n`,
- }),
- createSelector({
- selector: 'ul',
- start: element => `\n\n${listIndent(element)}\\begin{itemize}`,
- end: element => `\n${listIndent(element)}\\end{itemize}\n`,
- }),
- createSelector({
- selector: 'ol',
- start: element => `\n\n${listIndent(element)}\\begin{enumerate}`,
- end: element => `\n${listIndent(element)}\\end{enumerate}\n`,
- }),
- createSelector({
- selector: 'li',
- start: element => `\n${listIndent(element)}\t\\item `,
- }),
- createSelector({
- selector: 'p',
- match: element => {
- // must have content
- if (!hasContent(element)) {
- return false
- }
- // inside lists and tables, must precede another paragraph
- if (element.closest('li') || element.closest('table')) {
- return element.nextElementSibling?.nodeName === 'P'
- }
- return true
- },
- end: () => '\n\n',
- }),
- createSelector({
- selector: 'blockquote',
- start: () => `\n\n\\begin{quote}\n`,
- end: () => `\n\\end{quote}\n\n`,
- }),
- ]
|