# Writing Guide

This guide covers the Markdown syntax and features available in DocHub.

## Text Formatting

**Bold text** and *italic text* are supported. You can also use ~~strikethrough~~ and `inline code`.

## Code Blocks

Code blocks with syntax highlighting are supported for over 190 languages:

```javascript
function fibonacci(n) {
  if (n <= 1) return n;
  return fibonacci(n - 1) + fibonacci(n - 2);
}

console.log(fibonacci(10)); // 55
```

```python
def fibonacci(n):
    if n <= 1:
        return n
    return fibonacci(n - 1) + fibonacci(n - 2)

print(fibonacci(10))  # 55
```

```rust
fn fibonacci(n: u32) -> u32 {
    match n {
        0 | 1 => n,
        _ => fibonacci(n - 1) + fibonacci(n - 2),
    }
}

fn main() {
    println!("{}", fibonacci(10)); // 55
}
```

## Lists

### Unordered

- Item one
- Item two
  - Nested item
  - Another nested item
- Item three

### Ordered

1. First step
2. Second step
3. Third step

## Blockquotes

> This is a blockquote. It can span multiple lines and is useful for highlighting important information or callouts.

## Tables

| Feature | Status | Version |
|---------|--------|---------|
| Live reload | Done | 2.0.0 |
| Static build | Done | 2.0.0 |
| Full-text search | Done | 2.0.0 |
| Dark mode | Done | 2.0.0 |

## Links

Visit the [DocHub GitHub repository](https://github.com/tyler-Github/dochub) for more information.
