Namespaces
Type Aliases
HighlighterProps
Type Declaration
theme?
Variables
SyntaxHighlighter
defaultComponents in markdown-text.tsx
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
type HighlighterProps = Omit<ShikiHighlighterProps, "children" | "theme"> & {
theme?: ShikiHighlighterProps["theme"];
} & Pick<AUIProps, "language" | "code"> & Partial<Pick<AUIProps, "node" | "components">>;
optional theme?: ShikiHighlighterProps["theme"];
const SyntaxHighlighter: FC<HighlighterProps>;
defaultComponents in markdown-text.tsx
const defaultComponents = memoizeMarkdownComponents({
SyntaxHighlighter,
h1: //...
//...other elements...
});