From 7a6c09fac08cad13016196e235cb3790b3aa3cb0 Mon Sep 17 00:00:00 2001 From: bluwy Date: Wed, 15 Feb 2023 09:08:55 +0000 Subject: [PATCH] [ci] format --- packages/integrations/mdx/test/mdx-plugins.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/integrations/mdx/test/mdx-plugins.test.js b/packages/integrations/mdx/test/mdx-plugins.test.js index 7d4e4fe9aa..139d2042f3 100644 --- a/packages/integrations/mdx/test/mdx-plugins.test.js +++ b/packages/integrations/mdx/test/mdx-plugins.test.js @@ -226,14 +226,14 @@ function rehypeSvgPlugin() { tree.children.push({ type: 'element', tagName: 'svg', - properties: { xmlns:"http://www.w3.org/2000/svg" }, + properties: { xmlns: 'http://www.w3.org/2000/svg' }, children: [ { type: 'element', tagName: 'use', - properties: { 'xLinkHref': '#icon' } - } - ] + properties: { xLinkHref: '#icon' }, + }, + ], }); }; }