🚧 Rspress 2.0 文档还在开发中
close

CodeBlockRuntime non-ejectable

Warning

该组件是非 ejectable 组件,不能通过 wrap/eject 进行替换

CodeBlockRuntime 用于在运行时渲染可执行的代码块。

用法

index.mdx
import { CodeBlockRuntime } from '@theme';

export default function Page() {
  return (
    <CodeBlockRuntime
      lang="js"
      title="index.js"
      code={`console.log('Hello World!')`}
      shikiOptions={{}}
    />
  );
}

传入 langtitlecode 渲染代码块;shikiOptions 可自定义高亮配置。