+
{children}
)
diff --git a/src/components/mdx/index.tsx b/src/components/mdx/index.tsx
index 339920d4..444e53b8 100644
--- a/src/components/mdx/index.tsx
+++ b/src/components/mdx/index.tsx
@@ -4,26 +4,26 @@ export * from './Grid'
export * from './Hint'
export const h2 = ({ children, id }: { children: React.ReactNode; id: string }) => (
-
+
{children}
)
export const h3 = ({ children, id }: { children: React.ReactNode; id: string }) => (
-
+
{children}
)
export const h4 = ({ children, id }: { children: React.ReactNode; id: string }) => (
-
+
{children}
)
export const ul = ({ children }: { children: React.ReactNode }) => (
-
+
)
export const ol = ({ children }: { children: React.ReactNode }) => (
-
{children}
+
{children}
)
export const li = ({ children }: { children: React.ReactNode }) => (
{children}
@@ -34,11 +34,11 @@ export const p = ({ children }: { children: React.ReactNode }) => (
)
export const blockquote = ({ children }: { children: React.ReactNode }) => (
-
{children}
+
{children}
)
export const table = ({ children }: { children: React.ReactNode }) => (
-
+
)
diff --git a/src/utils/docs.tsx b/src/utils/docs.tsx
index 167748c1..436beccf 100644
--- a/src/utils/docs.tsx
+++ b/src/utils/docs.tsx
@@ -61,7 +61,7 @@ const MDX_BASEURL = process.env.MDX_BASEURL
async function _getDocs(
root: string,
slugOfInterest: string[] | null,
- slugOnly = false
+ slugOnly = false,
): Promise
{
const files = await crawl(root, MARKDOWN_REGEX)
// console.log('files', files)
@@ -146,7 +146,7 @@ async function _getDocs(
(_input, prefix: string, src: string, suffix: string) => {
const url = resolveMdxUrl(src, relFilePath, MDX_BASEURL)
return `${prefix}${url}${suffix}`
- }
+ },
)
const boxes: string[] = []
@@ -197,7 +197,7 @@ async function _getDocs(
boxes,
tableOfContents,
}
- })
+ }),
)
// console.log('docs', docs)
diff --git a/src/utils/icon.ts b/src/utils/icon.ts
index c047a851..272d7b59 100644
--- a/src/utils/icon.ts
+++ b/src/utils/icon.ts
@@ -26,8 +26,8 @@ export const svg = (emoji: string, { env, shift }: Options = { env: 'production'