Markdown guideline

Posted by : on

Category : project


This is an H1

This is an H2

This is a H1

This is a H2

This is a H3

This is a H4

This is a H5
This is a H6

This is a first blockqute.

This is a second blockqute.

This is a third blockqute.

code
  1. 첫번째
  2. 두번째
  3. 세번째
  • 빨강
    • 녹색
      • 파랑
  • 빨강
    • 녹색
      • 파랑
  • 빨강
    • 녹색
      • 파랑
  • 1단계
    • 2단계
      • 3단계
        • 4단계

This is a normal paragraph:

This is a code block.

end code block.

한줄 띄어쓰지 않으면 인식이 제대로 안되는 문제가 발생합니다.

This is a normal paragraph: This is a code block. end code block.

<pre><code>{code}</code></pre>

이용방식


public class BootSpringBootApplication {
  public static void main(String[] args) {
    System.out.println("Hello, Honeymon");
  }

}

코드블럭코드(“```”) 을 이용하는 방법

public class BootSpringBootApplication {
  public static void main(String[] args) {
    System.out.println("Hello, Honeymon");
  }
}

깃헙에서는 코드블럭코드(“```”) 시작점에 사용하는 언어를 선언하여 문법강조(Syntax highlighting)이 가능하다.

public class BootSpringBootApplication {
  public static void main(String[] args) {
    System.out.println("Hello, Honeymon");
  }
}

수평선 <hr/>

아래 줄은 모두 수평선을 만든다. 마크다운 문서를 미리보기로 출력할 때 페이지 나누기 용도로 많이 사용한다.

* * *

***

*****

- - -

---------------------------------------





참조링크

[link keyword][id]

[id]: URL "Optional Title here"

// code
Link: [Google][googlelink]

[googlelink]: https://google.com "Go google"

link keyword

// code Link: Google

외부링크

사용문법: [Title](link)
적용예: [Google](https://google.com, "google link")

사용문법: Title 적용예: Google

자동연결

일반적인 URL 혹은 이메일주소인 경우 적절한 형식으로 링크를 형성한다.

* 외부링크: <http://example.com/>
* 이메일링크: <address@example.com>

강조

*single asterisks*
_single underscores_
**double asterisks**
__double underscores__
~~cancelline~~

single asterisks single underscores double asterisks double underscores cancelline

사진

![Alt text](/path/to/img.jpg)
![Alt text](/path/to/img.jpg "Optional title")

OR

<img src="/assets/img/products/product1.jpg" width="450px" height="300px" title="px(픽셀) 크기 설정" alt="RubberDuck" />
<img src="assets/img/gallery/mountains/1.jpg" width="100%" height="30%" title="px(픽셀) 크기 설정" alt="RubberDuck" />

RubberDuck RubberDuck


About George
George

I'm George, a Web Developer.

Email : kghee9612@gmail.com

Website : https://ge5rg2.github.io

About George

Hi, my name is George. This is where I record what I have studied :D

Star
Useful Links