Components
Code block
Syntax highlighting with filenames, line highlights and diffs.
Filename
export const greet = (name: string) => `Hello, ${name}`;```ts [src/greet.ts]
export const greet = (name: string) => `Hello, ${name}`;
```Highlighted lines
const config = {
title: 'Mines',
subNav: 'header',
og: true,
};```js {2-3}
const config = {
title: 'Mines',
subNav: 'header',
og: true,
};
```Diff
:root {
--accent: #047857;
--accent: #7c3aed;
}```css
:root {
--accent: #047857;
--accent: #7c3aed;
}
```