
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단계
- 4단계
- 3단계
- 2단계
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"
// code Link: Google
외부링크
사용문법: [Title](link)
적용예: [Google](https://google.com, "google link")
자동연결
일반적인 URL 혹은 이메일주소인 경우 적절한 형식으로 링크를 형성한다.
* 외부링크: <http://example.com/>
* 이메일링크: <address@example.com>
- 외부링크: http://example.com/
- 이메일링크: address@example.com
강조
*single asterisks*
_single underscores_
**double asterisks**
__double underscores__
~~cancelline~~
single asterisks single underscores double asterisks double underscores cancelline
사진


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" />