Skip to content

Instantly share code, notes, and snippets.

@namongk
Last active October 17, 2017 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save namongk/845560619427876e6846b40421034832 to your computer and use it in GitHub Desktop.
Save namongk/845560619427876e6846b40421034832 to your computer and use it in GitHub Desktop.
rST 샘플

헤더

강조

이탤릭

기본 링크: http://django.2scoops.org 구문에 링크 달기 : Two Scoops of Django

서브 섹션의 헤더

  1. 번호를 가진 리스트 아이템
  2. 두번째 아이템
  • 첫 번째 목록 기호
  • 두 번째 목록 기호
    • 들여 쓴 목록 기호
    • 들여 쓴 상태에서 줄 바꾸기
code-block::
def like():

print("I like Ice Cream")

for i in range(10):

like()

파이썬 코드 블록(색깔 표시를 위해서는 pygments가 필요하다):

code-block::python

# "pip install pygments"가 필요

for i in range(10):

like()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment