Update custom dom-to-image filter to match Editor (#413)

main
Michael Fix 7 years ago committed by GitHub
parent 926ba9224f
commit 1875eac9a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -23,7 +23,20 @@ module.exports = browser => async (req, res) => {
transform: 'scale(2)', transform: 'scale(2)',
'transform-origin': 'center' 'transform-origin': 'center'
}, },
filter: n => (n.className ? String(n.className).indexOf('eliminateOnRender') < 0 : true), filter: n => {
// %[00 -> 19] cause failures
if (
n.innerText && n.innerText.match(/%[0-1][0-9]/) &&
n.className &&
n.className.startsWith('cm-') // is CodeMirror primitive string
) {
n.innerText = n.innerText.replace('%', '%25')
}
if (n.className) {
return String(n.className).indexOf('eliminateOnRender') < 0
}
return true
},
width: target.offsetWidth * 2, width: target.offsetWidth * 2,
height: target.offsetHeight * 2 height: target.offsetHeight * 2
} }

Loading…
Cancel
Save