Markdown Features

Inline CodeURL copied

Use inline code for short snippets.

Indented Code BlockURL copied

def hello_world():
    print("Hello, world!")

Fenced Code BlockURL copied

def hello_world():
    print("Hello, world!")
### Inline Code

Use `inline code` for short snippets.

### Indented Code Block

    def hello_world():
        print("Hello, world!")

### Fenced Code Block

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