This post show result from awesome Markdown techniques like jekyll. Jekyll supports to transform your plain text into static websites and blogs.

you can easy to change style in _utility.html and a sample of the formatting follows.


이 포스팅은 놀라운 Markdown 기술들로 만들어진 결과물입니다.

_utility.html에서 스타일을 변경할 수 있으며, 서식 샘플은 아래와 같습니다.


1. HTML headings

<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

This is heading 1

This is heading 2

This is heading 3

This is heading 4

This is heading 5
This is heading 6


2. bold text

<p>This is normal text - <b>and this is bold text</b>.</p>

This is normal text - and this is bold text.


3. list

a. unordered list

- Coffee
- Tea
- Milk
  • Coffee
  • Tea
  • Milk

b. ordered list

1. Coffee
2. Tea
3. Milk
  1. Coffee
  2. Tea
  3. Milk


4. hyperlink

[naye0ng's blog](https://naye0ng.github.io)

naye0ng’s blog


5. image

Try using .width-30, .width-40, .width-50, .width-60, .width-70 and .width-80 class! You can easily change the image width.

![sample image](/assets/img/koreaSunset.jpg)
![sample image](/assets/img/koreaSunset.jpg){: .width-30}
![sample image](/assets/img/koreaSunset.jpg){: .width-50}
![sample image](/assets/img/koreaSunset.jpg){: .width-80}

sample image

sample image sample image sample image

5. table

| Header 1  | Header 2 | Header 3 |
| :------- | :-------: | -------: |
| Content 1  | Content 2 | Content 3 |
| Content 1  | Content 2 | Content 3 |
Header 1 Header 2 Header 3
Content 1 Content 2 Content 3
Content 1 Content 2 Content 3