반응형
Notice
Recent Posts
Recent Comments
Link
Brise
마크다운 간단 사용법 본문
반응형
마크다운 예시
- 제목 및 글머리
This is Title ============ This is Subtitle ------------ # This is a Header Level1 ## This is a Header Level2 ### This is a Header Level3 #### This is a Header Level4 ##### This is a Header Level5 ###### This is a Header Level6
This is Title
This is Subtitle
This is a Header Level1
This is a Header Level2
This is a Header Level3
This is a Header Level4
This is a Header Level5
This is a Header Level6
- 인용
인용구 내부에 다른 인용구 및 마크다운 요소 포함 가능
> This is a first blockqute.
> > This is a second blockqute.
> > > This is a third blockqute.
This is a first blockqute.
This is a second blockqute.
This is a third blockqute.
- 목록
- 첫번째
- 두번째
- 세번째
1. 첫번째
2. 두번째
3. 세번째
- 빨강
- 녹색
- 파랑
- 빨강
- 녹색
- 파랑
- 녹색
- 코드블럭
코드블럭을 인용하는 방법은 크게, 명시적 인용, 암시적 인용으로 나눌 수 있음.
- 암시적 인용 : 새 줄에서 들여쓰기(ts=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.
- 명시적 인용 : 코드의 시작과 끌을 '''들을 이용하여 표시
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");
}
}
- 수평선
```
- 적용예
* 적용예 * * * *** ***** - - - --------------------------------------- 5. 강조
single asterisks
single underscores
double asterisks
double underscores
cancelline
* *single asterisks* * _single underscores_ * **double asterisks** * __double underscores__ * ~~cancelline~~
- 줄바꿈
- 줄 바꿈을 하기 위해서는 문장 마지막에서 3칸이상을 띄어쓰기해야 한다.
이렇게 - 줄 바꿈을 하기 위해서는 문장 마지막에서 3칸이상을 띄어쓰기해야 한다.___\ 띄어쓰기
이렇게
- 줄 바꿈을 하기 위해서는 문장 마지막에서 3칸이상을 띄어쓰기해야 한다. 이렇게
- 줄 바꿈을 하기 위해서는 문장 마지막에서 3칸이상을 띄어쓰기해야 한다.
이렇게
- 링크
[link keyword][id] [id]: URL "Optional Title here" // code Link: [Google][googlelink] [googlelink]: https://google.com "Go google"
![Alt text](/path/to/img.jpg) ![Alt text](/path/to/img.jpg "Optional title")
- 수식
$$ x+y = 1$$
$ x + y + z = 2 $
$$ x+y = 1$$
$ x + y + z = 2 $
반응형
'프로그램' 카테고리의 다른 글
윈도우 tensorflow 설치 (0) | 2023.05.26 |
---|---|
[GPT]ABI와 cdecl (0) | 2023.04.16 |
PlantUML으로 ASCII-art UML 생성하기 (0) | 2023.04.10 |
John the ripper; 암호 해제하기 (0) | 2022.05.05 |
VS code에서 Anaconda Python 연동 시 오류 발생할 때 해결 방법 (0) | 2020.09.22 |
ld(링커 스크립트, Linker Script) 공부 내용 (0) | 2019.07.27 |
정규 표현식(Regular expression) 쉽게 이해하기 (0) | 2017.06.16 |
Comments