This commit is contained in:
Jeff King 2020-06-22 10:53:04 -07:00
Родитель 21ce0849db
Коммит 492e3b3e20
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -179,7 +179,7 @@ export function renderCell<T extends ISimpleTableCell>(
const line = region?.startLine ?? 1
const col = region?.startColumn ?? 1
const length = (region?.endColumn ?? 1) - col
const [_, pre, hi, post] = new RegExp(`((?:.*\\n){${line - 1}}.{${col - 1}})(.{${length}})((?:.|\\n)*)`).exec(runArtContentsText)
const [_, pre, hi, post] = new RegExp(`((?:.*?\\n){${line - 1}}.{${col - 1}})(.{${length}})((?:.|\\n)*)`, 's').exec(runArtContentsText)
const escape = unsafe => unsafe
.replace(/&/g, "&amp;")