diff --git a/src/__tests__/plugin.js b/src/__tests__/plugin.js index eee3915a..365b63d3 100644 --- a/src/__tests__/plugin.js +++ b/src/__tests__/plugin.js @@ -47,7 +47,7 @@ describe('gatsby-remark-embedder', () => { - +
diff --git a/src/__tests__/transformers/CodeSandbox.js b/src/__tests__/transformers/CodeSandbox.js index 59d73421..bf0db790 100644 --- a/src/__tests__/transformers/CodeSandbox.js +++ b/src/__tests__/transformers/CodeSandbox.js @@ -46,7 +46,7 @@ test('Gets the correct CodeSandbox iframe', () => { const html = getHTML('https://codesandbox.io/s/ynn88nx9x'); expect(html).toMatchInlineSnapshot( - `""` + `""` ); }); @@ -64,11 +64,11 @@ test('Plugin can transform CodeSandbox links', async () => { - + - + - + " `); }); diff --git a/src/transformers/CodeSandbox.js b/src/transformers/CodeSandbox.js index 941a0baa..62fd783b 100644 --- a/src/transformers/CodeSandbox.js +++ b/src/transformers/CodeSandbox.js @@ -10,5 +10,5 @@ export const shouldTransform = (url) => { export const getHTML = (url) => { const iframeUrl = url.replace('/s/', '/embed/'); - return ``; + return ``; };