this is some text
result: this is some text
**this is bold text**
__you can also use undescores__
result:
this is bold text
you can also use underscores
*this is italic text*
_you can use underscores like for bold text_
result:
this is italic text
you can also use underscores like for bold text
# this is a top level header
## this is a second level header
...
###### this is a bottom level header
result:
...
```markdown
this is in a code block
```
result:
this is in a code block
| first column | second column |
|----------------|---------------------|
| first row | some text |
|second row | some more text |
result:
first column | second column |
---|---|
first row | some text |
second row | some more text |
[a link to github](https://github.com)
result:
- an
- unordered
- list
1. an
1. ordered
1. list
result:
- an
- unordered
- list
- an
- ordered
- list
> this is a quote
result:
this is a quote
~~this text is strikedthrough~~
result:
this text is strikedthrough