diff --git a/components/mdx/PreWrapper.tsx b/components/mdx/PreWrapper.tsx
index 2e7a264..e9248fd 100644
--- a/components/mdx/PreWrapper.tsx
+++ b/components/mdx/PreWrapper.tsx
@@ -33,7 +33,10 @@ const PreWrapper = ({ children }: { children: JSX.Element }) => {
{copied ?
+
{children}
diff --git a/pages/_document.tsx b/pages/_document.tsx
index ffc3f3c..396d78b 100644
--- a/pages/_document.tsx
+++ b/pages/_document.tsx
@@ -2,7 +2,11 @@ import { Head, Html, Main, NextScript } from "next/document";
export default function Document() {
return (
-
+ // If you are using a language based on RTL typesetting direction such as Arabic,
+ // please change the dir prop value in the following code to rtl
+ // Like
+ // Otherwise, please do not change
+
diff --git a/pages/api/search/[keyword].ts b/pages/api/search/[keyword].ts
index acd8967..5399ca4 100644
--- a/pages/api/search/[keyword].ts
+++ b/pages/api/search/[keyword].ts
@@ -18,7 +18,7 @@ export default function handler(req: NextApiRequest, res: NextApiResponse