Space shuttle leaving curved trail in the sky

hello, markdown content!

Markdown is the markup language for user content at GitHub and allows users at all skill levels to write plain text documents, which get rendered in HTML.

headers

# Heading 1

## Heading 2

### Heading 3

#### Heading 4

##### Heading 5

###### Heading 6

text

**Bold**

_Italic_

~~Strike through~~

H<sub>2</sub>0

X<sup>2</sup>

> hello, markdown content!

list

ordered

1. List
2. List
   1. Sub-List
   2. Sub-List

unordered

- First item
- Second item
- Third item
- Fourth item

tasks

- [x] First item
- [ ] Second item
- [ ] Third item
- [ ] Fourth item

table

| FirstName  | LastName  | City  |
| ---------- | --------- | ----- |
| FirstName1 | LastName1 | City1 |
| FirstName2 | LastName2 | City2 |

media

[d4rkwinz](https://www.d4rkwinz.com)

image

![d4rkwinz-social](https://www.d4rkwinz.com/social.webp)

code snippet

inline

getDistance(12)

block

function getDistance(amount: number) {
  if (amount === Infinity) {
    return 'and beyond!';
  } else {
    return 'and the normal distance!';
  }
}