Code Examples

Use inline code for short references.

Fenced Code Blocks

Copy code
def fibonacci(n)
  return n if n <= 1
  fibonacci(n - 1) + fibonacci(n - 2)
end

Another Example

Copy code
const greet = (name) => {
  console.log(`Hello, ${name}!`);
};

For syntax-highlighted code with copy buttons, line numbers, and themes,
use the CodeBlockComponent instead.