# Catlearn

## Introduction

[Introduction paragraph]

## Section 1

[Content of section 1]

### Subsection 1.1

[Content of subsection 1.1]

### Subsection 1.2

[Content of subsection 1.2]

## Section 2

[Content of section 2]

### Subsection 2.1

[Content of subsection 2.1]

### Subsection 2.2

[Content of subsection 2.2]

## Conclusion

[Conclusion paragraph]

## References

1. [Reference 1](https://www.example.com)
2. [Reference 2](https://www.example.com)
3. [Reference 3](https://www.example.com)

## Additional Resources

- [Link to additional resource 1](https://www.example.com)
- [Link to additional resource 2](https://www.example.com)

## Table

| Column 1 Header | Column 2 Header | Column 3 Header |
| --------------- | --------------- | --------------- |
| Row 1 Cell 1    | Row 1 Cell 2    | Row 1 Cell 3    |
| Row 2 Cell 1    | Row 2 Cell 2    | Row 2 Cell 3    |
| Row 3 Cell 1    | Row 3 Cell 2    | Row 3 Cell 3    |


## Code

```python
def factorial(n):
    if n == 0 or n == 1:
        return 1
    else:
        return n * factorial(n-1)

number = 5
result = factorial(number)
print(f"The factorial of {number} is: {result}")
```


## Special blocks

```{note}
Here is a note!
```

```{warning}
Here’s a warning!
```

```{admonition} Here's your admonition
Here's the admonition content
```

`````{admonition} This admonition was styled...
:class: tip
With a tip class!
`````

```{epigraph}
Here is a cool quotation.

-- Jo the Jovyan
```

```{glossary}
Term one
  An indented explanation of term 1

A second term
  An indented explanation of term2
```