> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yamuno.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Code Blocks

> Learn how to use code blocks with syntax highlighting

## Basic Code Blocks

Create a code block using triple backticks:

````
```python
def hello_world():
    print("Hello, World!")
```
````

## Syntax Highlighting

Specify the language after the opening backticks for syntax highlighting:

````
```javascript
function calculateSum(a, b) {
    return a + b;
}
```
````

## Supported Languages

* Python
* JavaScript
* Java
* C/C++
* Ruby
* PHP
* SQL
* HTML/CSS
* Shell scripts
* And many more

## Inline Code

Use single backticks for inline code:

```
Use the `print()` function to output text
```

## Best Practices

1. Always specify the language for proper syntax highlighting
2. Use inline code for short snippets within text
3. Use code blocks for longer examples
4. Include comments to explain complex code
5. Format code properly for better readability
