Online Markdown Playground

## Markdown Editor example

You can use:

* bullet points
* supports Github Flavored Markdown

### Embed some code

```python
def example_function():
print("hello world")
```

## Tables

| UserID | Name |
| :-------: | ------- |
| 1 | John |
| 2 | Jill |
| 3 | Jack |

Markdown Editor example

You can use:

  • bullet points
  • supports Github Flavored Markdown

Embed some code

def example_function():
  print("hello world")

Tables

UserIDName
1John
2Jill
3Jack