첫 글입니다.

양식 참고용으로 지우지 않았으나 깃헙 블로그 작업이 익숙해지면 지우게 될 것 같습니다.

글 새로 올리기

새 글을 업로드하기 위해서 형식에 맞춰서 문서를 작성후 _posts 디렉토리에 YYYY-MM-DD-name-of-post.ext 형태의 이름의 파일을 올립니다.

태그와 카테고리 기능

글 작성시에 categories, tags에 단어를 입력하면 자동으로 카테고리, 태그 기능을 사용할 수 있는데 대문자를 포함하면 링크 연결이 제대로 되지 않기 때문에 소문자로만 작성하는 것을 원칙으로 합니다. jekyll-archive

커버 이미지

상단 커버 이미지는 cover : 항목에 다음과 같이 경로 지정을 하면 됩니다. (i.e. cover: "/assets/cover_image.jpg").

Code Snippets

highlight.js 를 이용하면 코드 표현에 있어서 그럴 듯 하게 만들 수 있습니다.:

Liquid {% highlight <language> %}를 추가해서 사용합니다.

예를 들면,

{% highlight python %}
import numpy as np
import pandas as pd

data = pd.read_csv('data.csv', engine = python)
{% endhighlight %}

…가 이런 식으로 표현됩니다:

import numpy as np
import pandas as pd

data = pd.read_csv('data.csv', engine = python)

테마 변경은 다음 링크에서 할 수 있다고 합니다 head.html.

사진 올리기

사진 올리기에 Lightbox 기능을 사용할 수 있습니다. To create the link that’ll launch the lightbox, add data-lightbox and data-title attributes to an <a> tag around your <img> tag. The result is:

For more information, check out the Lightbox website.

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’s dedicated Help repository.