Headers
This is an <h1> tag
This is an <h2> tag
This is an <h6> tag
# This is an <h1> tag
## This is an <h2> tag
###### This is an <h6> tag
Emphasis
This text will be italic
this will also be italic
This text will be bold
This will also be bold
You can combine them
*This text will be italic*
_This will also be italic*
**This text will be bold**
__This will also be bold__
_You **can** combine them_
Lists
Unordered
- Item 1
- Item 2
- Item 2a
- Item 2b
* Item 1
* Item 2
* Item 2a
* Item 2b
Ordered
- Item 1
- Item 2
- Item 3
- Item 3a
- Item 3b
1. Item 1
1. Item 2
1. Item 3
1. Item 3a
1. Item 3b
Images
![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)
url의 경우 2가지를 활용할수 있다.
1.Image의 주소
2.다운받은 이미지가 저장된 경로
Links
http://github.com - automatic!
http://github.com - automatic!
[Github](http://github.com)
Blockquotes
As Kanye West said:
We’re living the future so
the present is our past.
As kanye West said:
> We're living the future so
> the present is our past.
Inline code
I think you should use an
<addr>
element here instead.
I think you should use an
`<addr>` element here instead.
Syntax highlighting
구문 강조를 사용하는 방법의 예는 다음과 같습니다.
Github Flavored Markdown:
```javascript
function fancyAlert(arg) {
if(arg) {
$.facebox({div:'#foo'})
}
}
```
또한 4칸 공백으로 코드를 들여쓰기 할수 있습니다.
funtion fancyAlert(arg) {
if(arg) {
$.facebox({div:'#foo'})
}
}
syntax highlighting이 없는 Python 코드 예제입니다.
def foo():
if not bar:
return True
Task Lists
- @mentions, #refs, links, formatting, and
tagssupported - list syntax required (any unordered or ordered list supported)
- this is a complete item
- this is an incomplete item
- [x] @mentions, #refs, [links](), **formatting**, and <del>tags</del> supported
- [x] list syntax required (any unordered or ordered list supported)
- [x] this is a complete item
- [ ] this is an incomplete item
이슈의 첫 번째 코멘트에 작업 목록을 포함시키면 진행 사항을 보다 편리하게 알수 있습니다.
Pull Requests에서도 작동합니다!
Tables
First Header | Second Header |
---|---|
Content from cell 1 | Content from cell 2 |
Content in the first column | Content in the second column |
First Header | Second Header
------------ | -------------
Content from cell 1 | Content from cell 2
Content in the first column | Content in the second column
SHA references
커밋의 SHA-1 해시에 대한 참조는 Github의 커밋에 대한 링크로 자동 변환됩니다.
16c999e8c71134401a78d4d46435517b2271d6ac mojombo@16c999e8c71134401a78d4d46435517b2271d6ac mojombo/github-flavored-markdown@16c999e8c71134401a78d4d46435517b2271d6ac
16c999e8c71134401a78d4d46435517b2271d6ac
mojombo@16c999e8c71134401a78d4d46435517b2271d6ac
mojombo/github-flavored-markdown@16c999e8c71134401a78d4d46435517b2271d6ac
Issue references within a repository
이슈 또는 끌어 오기 요청을 참조하는 번호는 자동으로 링크로 변환됩니다.
#1 mojombo#1 mojombo/github-flavored-markdown#1
#1
mojombo#1
mojombo/github-flavored-markdown#1
Username @mentions
@ 기호 다음에 사용자 이름을 입력하면 그 사람에게 와서 댓글을 볼 수 있음을 알립니다.
단순 개인을 언급하기 때문에 이를 “@mention”이라고합니다.
또한 조직 내의 팀에게도 @mention 을 할 수 있습니다.
Automatic linking for URLs
모든 URL 은 자동으로 클릭 가능한 링크로 변환됩니다.
(예 : http://www.github.com/)
(예 : http://www.github.com/)
Strikethrough
this
두 개의 물결표로 감싸는 단어(~~this~~
같은)는 밖으로 엇갈린 것처럼 보일겁니다.
Comments