Jekyll을 이용한 Blog!

less than 1 minute read

_posts라는 폴더 안에 지금의 글이 저장되어 있어요. 글을 쓴다면 제목을 yyyy-mm-dd-내용과 같은 형식으로 해주어야 글을 인식하고 이런 방식을 front matter라고 한다해요. 게다가 Jekyll은 code snippets(코드 자동완성)기능을 제공한다고 해요.

아래는 Markdown을 이용하여 Python code block을 만들어 봤어요.

def print_hi(name):
  print("hello", name)
print_hi('Tom')

기본적으로 마크다운 문서이다보니 마크다운 문법 + 마크업 문법을 사용하여 편하게 글을 쓸 수 있네요.

Check out the Jekyll docs for more info on how to get the most out of Jekyll. File all bugs/feature requests at Jekyll’s GitHub repo. If you have >questions, you can ask them on Jekyll Talk.