summaryrefslogtreecommitdiff
path: root/packages/integrations/mdx/test/mdx-plugins.test.js
diff options
context:
space:
mode:
authorGravatar bluwy <bluwy@users.noreply.github.com> 2023-02-15 09:08:55 +0000
committerGravatar fredkbot <fred+astrobot@astro.build> 2023-02-15 09:08:55 +0000
commit7a6c09fac08cad13016196e235cb3790b3aa3cb0 (patch)
tree18809e54c1fb05983ccab821ff63026c66f4010c /packages/integrations/mdx/test/mdx-plugins.test.js
parent4f6ecba4c1b35bacbbc0097854ee2b7b8c878e71 (diff)
downloadastro-7a6c09fac08cad13016196e235cb3790b3aa3cb0.tar.gz
astro-7a6c09fac08cad13016196e235cb3790b3aa3cb0.tar.zst
astro-7a6c09fac08cad13016196e235cb3790b3aa3cb0.zip
[ci] format
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' },
+ },
+ ],
});
};
}