마크다운은 매우 편리하게 문서를 작성해 주는 도구이다. 특히 github 문서를 작성할 때 매우 용이하며 다음과 같은 기능을 제공한다.
참고로 underline은 존재하지 않는데, 그 이유는 아마도 hyperlink랑 구분하기 위해서로 추정된다.
# 큰 제목
## 그다음 큰 제목
### 그다음 큰 제목
....
###### 제일 작은 제목
- 글머리기호
1. 숫자 기호
하이퍼링크(단축키 컨트롤+k): [GitHub](http://github.com)
엔터 2번: 문단나누기
(띄어쓰기를 넣으면 안됨)
*기울기*
**굵게**
***기울고 굵게***
~~취소선~~
다른 github issue 태깅하기 : # 하고 선택해서 태깅
space 3번( ): 문단 들여쓰기(Indentation)
> : 이메일 스타일 문단 인용
*** : 수평선 생성
` 단순한 1줄 코드 `
``` python
파이썬 코드를 인식하여 highlighting이 되는 여러줄 짜리 코드 블록
```
* 체크리스트
- [ ] : will do
- [x] : done
* 테이블은 | 와 --- 2가지를 이용함
| Tables | Are | Cool |
| --- |---| --- |
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
https://gist.github.com/ihoneymon/652be052a0727ad59601
https://guides.github.com/features/mastering-markdown/
취소선 다른 방법들
<strike>strike</strike>
→파업<del>strike</del>
→스트라이크<s>strike</s>
→파업~~strike~~
→ ~~ 파업 ~~~strike~
→ ~ 스트라이크 ~
https://qastack.kr/webapps/14986/strikethrough-with-github-markdown
'Development > for Machine Learning' 카테고리의 다른 글
ML Python 프로젝트의 test code만들기(feat. Pytest) (0) | 2020.03.16 |
---|---|
딥러닝 프로젝트를 위한 클라우드 GPU 자원, Google Cloud Platform (0) | 2019.12.08 |
Jupyter Notebook (0) | 2017.05.23 |
TensorFlow Extreme Performance Tuning (0) | 2017.01.20 |
TensorFlow 프로그래밍 (0) | 2016.09.13 |
댓글