Code BlockExample code block documentationBasic Usage Code blocks with syntax highlighting: // JavaScript example function hello(name) { return `Hello, ${name}!`; } // TypeScript example interface User { name: string; age: number; } const user: User = { name: "John", age: 30 }; Features Syntax highlighting Copy button Language labels Line numbers (optional) With Title example.pydef greet(name): """Simple greeting function""" return f"Hello, {name}!"