Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- jdbc
- Client
- EC2
- DISTINCT
- 토비의스프링
- Linux
- docker
- Java
- spring boot
- github
- ssh
- db
- 프로그래머스
- AWS
- spring
- mariadb
- Spring Legacy Project
- Git
- TypeScript
- window
- SSL
- sample
- centos7
- vagrant
- TLS
- Hibernate
- Jenkins
- 책 정리
- 코딩테스트
- WebHook
Archives
- Today
- Total
Woopii Vyeolog
[Github] README.md(Markdown) 작성, 꾸미기 (1.문법 정리) 본문
https://gist.github.com/ihoneymon/652be052a0727ad59601
마크다운 문법 정리
파일 확장자명은 '.md'
[//]: # (큰 제목, 작은 제목)
this is Big Header
==================
this is Small Header
--------------------
[//]: # (글머리 크기 조절)
# H1
## H2
### H3
#### H4
##### H5
###### H6
[//]: # (블럭)
> This is a first blockqute.
> > This is a second blockqute.
> > > This is a third blockqute.
[//]: # (목록)
1. 첫번째
2. 두번째
3. 세번째
* 빨강
* 녹색
* 파랑
+ 빨강
+ 녹색
+ 파랑
- 빨강
- 녹색
- 파랑
* 1단계
- 2단계
+ 3단계
[//]: # (들여쓰기)
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");
}
}
```
```java
public class BootSpringBootApplication {
public static void main(String[] args) {
System.out.println("Hello, Honeymon");
}
}
```
[//]: # (수평선)
* * *
***
*****
- - -
---------------------------------------
[//]: # (링크)
[link keyword][id]
[id]: URL "Optional Title here"
// code Link: [Google][googlelink]
[googlelink]: https://google.com "Go google"
사용문법: [Title](link)
적용예: [Google](https://google.com "google Link")
일반적인 URL 혹은 이메일주소인 경우 적절한 형식으로 링크를 형성한다.
* 외부링크: <http://example.com/>
* 이메일링크: <address@example.com>
[//]: # (강조)
*single asterisks*
_single underscores_
**double asterisks**
__double underscores__
~~cancelline~~
[//]: # (이미지)
![Alt text](https://images.chosun.com/resizer/XRQ3clGIV5Cc7Q5yNUssx5bmmqQ=/497x366/smart/cloudfront-ap-northeast-1.images.arcpublishing.com/chosun/3K5SJID7DRN7EYBABD7VQREBPU.jpg "Optional title")
<img src="https://images.chosun.com/resizer/XRQ3clGIV5Cc7Q5yNUssx5bmmqQ=/497x366/smart/cloudfront-ap-northeast-1.images.arcpublishing.com/chosun/3K5SJID7DRN7EYBABD7VQREBPU.jpg" width="450px" height="300px" title="px(픽셀) 크기 설정" alt="RubberDuck"></img><br/>
<img src="https://images.chosun.com/resizer/XRQ3clGIV5Cc7Q5yNUssx5bmmqQ=/497x366/smart/cloudfront-ap-northeast-1.images.arcpublishing.com/chosun/3K5SJID7DRN7EYBABD7VQREBPU.jpg" width="40%" height="30%" title="px(픽셀) 크기 설정" alt="RubberDuck"></img>
[//]: # (줄바꿈)
* 줄 바꿈을 하기 위해서는 문장 마지막에서 3칸이상을 띄어쓰기해야 한다.
이렇게
* 줄 바꿈을 하기 위해서는 문장 마지막에서 3칸이상을 띄어쓰기해야 한다. ---
이렇게
'Git, Github' 카테고리의 다른 글
[Github] Github Action + Discord webhook 알림 설정 (2) | 2024.09.22 |
---|---|
[Github] 여러개의 github 계정 등록하기 (0) | 2024.03.28 |
[Git] 내가 자주쓰는 Git 명령어 모음 (1) | 2024.03.04 |
[Git] 프로젝트에 submodule 추가 (0) | 2024.02.25 |
[Github] SSH Key 등록하는 방법 (0) | 2023.10.28 |
Comments