text block, code block, paragrah
Code Block

Code Block

def hello():
    print("hello")

Long Code Block

def hello():
    print("Line 1")
    print("Line 2")
    
    
    print("Line 5 after gaps")
    
    
    
    print("Line 9 after gaps")

Special Characters

!@#$%^&*()_+ 123

Nested with Tildes

```javascript
console.log("Inner");
```