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

# Code blocks

> Display inline code and syntax-highlighted code blocks

## Inline code

Wrap a `word` or `phrase` in backticks to render it as inline code.

```
Wrap a `word` or `phrase` in backticks to render it as inline code.
```

## Code blocks

Use fenced code blocks with a language identifier for syntax highlighting. You can optionally add a filename after the language.

```java HelloWorld.java theme={null}
class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}
```

````md theme={null}
```java HelloWorld.java
class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}
```
````
