[ci] format

This commit is contained in:
bluwy 2023-02-15 09:08:55 +00:00 committed by fredkbot
parent 4f6ecba4c1
commit 7a6c09fac0

View file

@ -226,14 +226,14 @@ function rehypeSvgPlugin() {
tree.children.push({ tree.children.push({
type: 'element', type: 'element',
tagName: 'svg', tagName: 'svg',
properties: { xmlns:"http://www.w3.org/2000/svg" }, properties: { xmlns: 'http://www.w3.org/2000/svg' },
children: [ children: [
{ {
type: 'element', type: 'element',
tagName: 'use', tagName: 'use',
properties: { 'xLinkHref': '#icon' } properties: { xLinkHref: '#icon' },
} },
] ],
}); });
}; };
} }