VLADYSLAV PASHYNSKYKH

Markdown



Table of Contents

Cheatsheet

Headings

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Text Formatting

**Bold text**
__Bold text__

*Italic text*
_Italic text_

***Bold italic text***
___Bold italic text___

~~Strikethrough text~~

<u>Underlined text</u>

==Highlighted text==

superscript^2^

subscript~2~

Paragraphs and Line Breaks

This is the first paragraph.

This is the second paragraph.

This is a line of text.  
This is a new line (two spaces at end of line).

Lists

- Item 1
- Item 2
  - Subitem 2.1
  - Subitem 2.2

1. First item
2. Second item
   1. Subitem 2.1
   2. Subitem 2.2
3. Third item

* Using asterisk
+ Using plus

- [x] Completed task
- [ ] Incomplete task
- [ ] Another task
[Link text](https://www.pashynskykh.com)
[Link with title](https://www.pashynskykh.com "Link title")

[Reference link][1]
[1]: https://www.markdownlang.com "Link title"

<https://www.pashynskykh.com>
<[email protected]>

Images

![Alt text](image.jpg)
![Image with title](image.jpg "Image title")

[![Image link](image.jpg)](https://www.pashynskykh.com)

Blockquotes

> This is a blockquote
> 
> Second paragraph in blockquote

> Level 1 quote
> > Level 2 quote
> > > Level 3 quote

Code

This is an `inline code` in the sentence.

```
This is a code block.
```

Tables

| Left Align | Center Align | Right Align |
|-----------|:------------:|------------:|
| Content1   |   Content2   |    Content3 |
| Content4   |   Content5   |    Content6 |

Horizontal Rules

---

***

___

- - -

Line Breaks

Method 1: Add two spaces at end of line  
Then break line

Method 2: Use HTML tag<br>
Break line

Method 3: Separate by blank line

New paragraph

Footnotes

Here is a footnote reference[^1].

[^1]: This is the content of the footnote.

HTML Tags

<strong>Bold</strong>
<em>Italic</em>
<mark>Highlight</mark>
<del>Delete</del>
<ins>Insert</ins>