summaryrefslogtreecommitdiff
path: root/packages/integrations/mdx/test/mdx-plugins.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/mdx/test/mdx-plugins.test.js')
-rw-r--r--packages/integrations/mdx/test/mdx-plugins.test.js8
1 files 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 7d4e4fe9a..139d2042f 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' },
+ },
+ ],
});
};
}