This commit is contained in:
MacRimi
2025-02-15 13:24:22 +01:00
parent 56e52fb784
commit 1e81442392
3 changed files with 72 additions and 70 deletions

View File

@@ -21,12 +21,21 @@ export async function generateStaticParams() {
export default async function GuidePage({ params }: { params: { slug: string } }) {
const guideContent = await getGuideContent(params.slug)
// Función para envolver los bloques de código con CopyableCode
const wrapCodeBlocks = (content: string) => {
return content.replace(
/<pre><code>([\s\S]*?)<\/code><\/pre>/g,
(match, code) => `<CopyableCode code="${encodeURIComponent(code.trim())}" />`,
)
}
const wrappedContent = wrapCodeBlocks(guideContent)
return (
<div className="container mx-auto px-4 py-16 max-w-3xl bg-white text-gray-900 border-white">
<div
className="prose prose-lg max-w-none prose-pre:bg-gray-100 prose-pre:text-gray-900 prose-headings:text-gray-900 prose-p:text-gray-800"
dangerouslySetInnerHTML={{ __html: guideContent }}
/>
<div className="min-h-screen bg-white text-gray-900">
<div className="container mx-auto px-4 py-16 max-w-3xl">
<div className="prose max-w-none" dangerouslySetInnerHTML={{ __html: wrappedContent }} />
</div>
</div>
)
}