mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 20:26:53 +00:00
42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
import fs from "fs"
|
|
import path from "path"
|
|
import { remark } from "remark"
|
|
import html from "remark-html"
|
|
|
|
async function getGuideContent(slug: string) {
|
|
const guidePath = path.join(process.cwd(), "..", "guides", `${slug}.md`)
|
|
const fileContents = fs.readFileSync(guidePath, "utf8")
|
|
|
|
const result = await remark().use(html).process(fileContents)
|
|
return result.toString()
|
|
}
|
|
|
|
export async function generateStaticParams() {
|
|
const guideFiles = fs.readdirSync(path.join(process.cwd(), "..", "guides"))
|
|
return guideFiles.map((file) => ({
|
|
slug: file.replace(/\.md$/, ""),
|
|
}))
|
|
}
|
|
|
|
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="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>
|
|
)
|
|
}
|