mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 01:44:37 +08:00
18 lines
351 B
JavaScript
18 lines
351 B
JavaScript
|
import {create} from './util/create.js'
|
||
|
|
||
|
export const xlink = create({
|
||
|
properties: {
|
||
|
xLinkActuate: null,
|
||
|
xLinkArcRole: null,
|
||
|
xLinkHref: null,
|
||
|
xLinkRole: null,
|
||
|
xLinkShow: null,
|
||
|
xLinkTitle: null,
|
||
|
xLinkType: null
|
||
|
},
|
||
|
space: 'xlink',
|
||
|
transform(_, property) {
|
||
|
return 'xlink:' + property.slice(5).toLowerCase()
|
||
|
}
|
||
|
})
|