

























Beautiful syntax highlighting and interactive code blocks powered by Shiki.
Streamdown provides beautiful, interactive code blocks with syntax highlighting powered by Shiki. Every code block includes a copy button and supports a wide range of programming languages.
Create code blocks using triple backticks with an optional language identifier:
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
```Streamdown will automatically apply syntax highlighting based on the specified language.
Syntax highlighting requires the code plugin. Install it:
Then import and pass the plugin to Streamdown:
import { Streamdown } from "streamdown";
import { code } from "@streamdown/code";
export default function Page() {
return (
<Streamdown plugins={{ code: code }}>
{markdown}
</Streamdown>
);
}Without the code plugin, code blocks render as plain text with no highlighting.
Streamdown supports 200+ programming languages through Shiki. All languages are lazy-loaded on demand, so only the grammars you use are downloaded.
```typescript
interface User {
id: number;
name: string;
email: string;
}
async function fetchUser(id: number): Promise<User> {
const response = await fetch(`/api/users/${id}`);
return response.json();
}
``````python
def fibonacci(n: int) -> list[int]:
"""Generate Fibonacci sequence up to n terms."""
fib = [0, 1]
for i in range(2, n):
fib.append(fib[i-1] + fib[i-2])
return fib
print(fibonacci(10))
``````rust
fn main() {
let numbers = vec![1, 2, 3, 4, 5];
let sum: i32 = numbers.iter().sum();
println!("Sum: {}", sum);
}
```Streamdown uses dual themes for light and dark modes. You can customize the themes using the shikiTheme prop:
import { Streamdown } from "streamdown";
import { code } from "@streamdown/code";
export default function Page() {
return (
<Streamdown
plugins={{ code: code }}
shikiTheme={["dracula", "dracula"]}
>
{markdown}
</Streamdown>
);
}Streamdown supports all Shiki themes including:
github-light (default light theme)github-dark (default dark theme)dracula, nord, one-dark-pro, monokaicatppuccin-latte, catppuccin-mochavitesse-light, vitesse-darktokyo-night, slack-dark, slack-ochinThe shikiTheme prop accepts [ThemeInput, ThemeInput] where ThemeInput is either a bundled theme name (BundledTheme) or a custom theme object (ThemeRegistrationAny). You can mix and match:
import { Streamdown } from "streamdown";
import { code } from "@streamdown/code";
import myCustomDarkTheme from "./my-dark-theme.json";
export default function Page() {
return (
<Streamdown
plugins={{ code: code }}
shikiTheme={["github-light", myCustomDarkTheme]}
>
{markdown}
</Streamdown>
);
}Bundled theme names (strings) load from Shiki's built-in registry. Custom theme objects follow the ThemeRegistrationAny format from Shiki — any VS Code .tmTheme or JSON theme file works.
Set the starting line number for a code block using startLine=N in the code fence meta:
```typescript startLine=10
const user = await getUser(id);
const profile = await getProfile(user);
```Line numbers begin at the value you specify instead of 1. The value must be a positive integer (>= 1).
Every code block includes a copy button that appears on hover. Users can click to copy the entire code block content to their clipboard.
The copy button:
isAnimating={true})Disable individual code block buttons using the controls prop:
// Hide the download button, keep copy
<Streamdown controls={{ code: { download: false } }}>{markdown}</Streamdown>
// Hide the copy button, keep download
<Streamdown controls={{ code: { copy: false } }}>{markdown}</Streamdown>
// Hide all code block controls
<Streamdown controls={{ code: false }}>{markdown}</Streamdown>
// Hide all controls across all block types
<Streamdown controls={false}>{markdown}</Streamdown>Inline code uses backticks and receives subtle styling:
Use the `useState` hook to manage state in React.Inline code is styled with:
Code blocks include:
Code blocks work seamlessly with streaming content:
When a code block is streaming in, Streamdown handles the incomplete state gracefully:
```javascript
function example() {
// Streaming in progress...
```The unterminated block parser ensures the code block renders properly even without the closing backticks.
Code block shells render immediately with plain text content, then syntax colors are applied when highlighting resolves.
This keeps code readable on first paint and improves visual stability during lazy highlight loading.
Use the isAnimating prop to disable copy buttons while streaming:
<Streamdown isAnimating={isStreaming}>{markdown}</Streamdown>This prevents users from copying incomplete code.
The Code plugin implements the CodeHighlighterPlugin interface:
interface CodeHighlighterPlugin {
name: "shiki";
type: "code-highlighter";
highlight: (options: HighlightOptions, callback?: (result: HighlightResult) => void) => HighlightResult | null;
supportsLanguage: (language: BundledLanguage) => boolean;
getSupportedLanguages: () => BundledLanguage[];
getThemes: () => [BundledTheme, BundledTheme];
}import type {
CodeHighlighterPlugin,
HighlightOptions,
HighlightResult,
} from '@streamdown/code';
// HighlightOptions - parameters for highlighting
interface HighlightOptions {
code: string;
language: BundledLanguage;
themes: [string, string];
}
// HighlightResult - Shiki's TokensResult type
type HighlightResult = TokensResult;Use the plugin directly for custom highlighting:
import { code } from '@streamdown/code';
// Check language support
if (code.supportsLanguage('typescript')) {
code.highlight(
{ code: 'const x = 1;', language: 'typescript', themes: ['github-light', 'github-dark'] },
(result) => {
// Handle highlighted tokens
console.log(result.tokens);
}
);
}此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。