Code blocks are used to display code snippets. The following languages are supported for syntax highlighting (via highlight.js):
html
css
js
ts
svelte
(fallback to html
)jsx
(fallback to html
)<CodeBlock language="html" code={code} />
<div class="container">
<h1>Hello World</h1>
</div>
.container {
display: flex;
justify-content: center;
align-items: center;
}
console.log('Hello World');
type User {
name: string;
age: number;
}
<script>
let name = 'World';
</script>
<h1>Hello {name}</h1>
function App() {
return (
<div>
<h1>Hello World</h1>
</div>
);
}