motion
Version:
motion - moving development forward
26 lines (23 loc) • 400 B
JavaScript
// tags that shouldn't map out to real names
const whitelist = [
'title',
'meta',
'head',
'circle',
'col',
'body'
]
const niceAttrs = {
class: 'className',
for: 'htmlFor',
srcset: 'srcSet',
novalidate: 'noValidate',
autoplay: 'autoPlay',
frameborder: 'frameBorder',
allowfullscreen: 'allowFullScreen',
tabindex: 'tabIndex',
}
export default {
whitelist,
niceAttrs
}