mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-13 20:14:56 +02:00
10 lines
225 B
JavaScript
10 lines
225 B
JavaScript
import {create} from './util/create.js'
|
|
|
|
export const xml = create({
|
|
space: 'xml',
|
|
transform(_, prop) {
|
|
return 'xml:' + prop.slice(3).toLowerCase()
|
|
},
|
|
properties: {xmlLang: null, xmlBase: null, xmlSpace: null}
|
|
})
|