` tag to center your text. It's not a part of Markdown, but some renderers like Github
.mdb:
```html
Some text
```
md:
Some text
### list
list element `
content`
#### dot list
.mdp:
```html
John
Doe
Jane
Smith
Mike
Johnson
27
```
.md:
- John
- Doe
- Jane
- Smith
- Mike
- Johnson
- 27
#### number list
.mdp:
```html
John
Jane
Mike
```
md:
1) John
2) Jane
3) Mike
#### empty checkbox list
.mdp:
```html
John
Jane
Mike
```
md:
- [ ] John
- [ ] Jane
- [ ] Mike
#### checked checkbox list
.mdp:
```html
John
Jane
Mike
```
md:
- [X] John
- [X] Jane
- [X] Mike
### csv table
.mdp:
```html
Name,Surname,Age
John,Doe,25
Jane,Smith,30
Mike,Johnson,27
```
.md:
| Name | Surname | Age |
| --- | --- | --- |
| John | Doe | 25 |
| Jane | Smith | 30 |
| Mike | Johnson | 27 |
### output element
#### output with command
mdp:
```html
Hello
```
md:
```bash
gh@repo:/$ echo Hello
Hello
gh@repo:/$ █
```
#### output without command
mdp:
```html
Deneme
```
md:
```bash
gh@repo:/$
Deneme
gh@repo:/$ █
```
#### output with custom lang
mdp:
```html
Hello
```
md:
```python
gh@repo:/$ echo Hello
Hello
gh@repo:/$ █
```
## youtube embed (width 400)
`$ytembed R2dqWt81lxo`
[

](https://www.youtube.com/watch?v=R2dqWt81lxo)
## badges
### github badge (`for-the-badge` style)
`$github sanalzio style=for-the-badge`
[

](https://github.com/sanalzio)
### email badge (no custom options)
`$email sanalzio@duck.com`
[

](mailto:sanalzio@duck.com)
### website badge (`for-the-badge` style and custom color)
`$website sanalzio.github.io darkred style=for-the-badge`
[

](https://sanalzio.github.io)
## buymeacoffee badge (no custom options)
`$buymeacoffee sanalzio`
[

](https://buymeacoffe.com/sanalzio)
## github status badges
### profile views badge (no custom options)
`$views sanalzio`

### github stats embed (with `show_icons=true` and `rank_icon=github` options)
`$stats sanalzio true rank_icon=github`

### github top langs embed (with `layout=compact` option)
`$toplangs sanalzio compact`

## custom badge
`$badge Hello-World! darkred style=for-the-badge`

## Example files
[**example .mdp file**](https://github.com/sanalzio/markdown-plus/blob/master/example.mdp)
[**converted example file**](https://github.com/sanalzio/markdown-plus/blob/master/example.md)