본문 바로가기

프로그래밍

Github Markdown

이 포스팅은 깃허브에서 자주 사용되는 것들을 정리한 것입니다. 

 

사실 코드블록 ``` 심볼을 키보드로 입력하는 방법을

몰라서 매번 구글에 검색하다가 짜증나서 작성함

 

이건 giphy에서 주운 짤


1. Source Code

```python 
print("hello fxnnxc")
```

Github MarkDown Preview

 

사실 ``` 심볼은 키보드 ~ 에 같이 있는 심볼이었습니다 -_-


```bash
pip install -e .
```

Github Markdown Preview


2. HTML link 텍스트

[Transformer](https://arxiv.org/abs/1706.03762)는 최고의 모델이야!

 

Github Markdown Preview



 

3. Table Alignment

| Default Header | Left Align | Right Align | Center Align |
| ---            | :--        |         --: |      :-:     |

GIthub Markdown Preview



4. Github Todo

- [x] Finish my changes
- [ ] Push my commits to GitHub
- [ ] Open a pull request

5. Latex(Math)

 

<img src="https://latex.codecogs.com/gif.latex?\phi_s=\text{agent&space;state}&space;&space;,\phi_{o}=\text{opponent&space;state}" width=400px>

 


github.com/fxnnxc