diff --git a/web/app/guides/[slug]/GuideContent.tsx b/web/app/guides/[slug]/GuideContent.tsx
index 0aee350..97288c8 100644
--- a/web/app/guides/[slug]/GuideContent.tsx
+++ b/web/app/guides/[slug]/GuideContent.tsx
@@ -5,13 +5,19 @@ import { useState, useEffect } from "react"
import CopyableCode from "@/components/CopyableCode"
function processContent(content: string): React.ReactNode[] {
- const parts = content.split(/(```[\s\S]*?```)/g)
+ const parts = content.split(/(```[\s\S]*?```|`[^`\n]+`)/g)
return parts.map((part, index) => {
if (part.startsWith("```") && part.endsWith("```")) {
const code = part.slice(3, -3).trim()
return
+ {part.slice(1, -1)}
+
+ )
}
- return
-{code}
+++{code}