Ruby설치
# Ubuntu
sudo apt-get install ruby-full
jekyll과 bundler 설치
# sudo 가 필요할 수 있다.
gem install jekyll bundler
Blog 실행
bundle exec jekyll serve
Post 작성
Github에 파일을 올리는 형식
- 포스트는 markdown 형식으로 작성
파일 상단에 들어갈 태그
---
layout: single
title: jekyll blog 시작하기
excerpt: jekyll 블로그 관리하기
categories:
- blog
tag:
- blog
author: Sangwon
lastmod: 2021-06-25 14:52:00
sitemap:
changefreq: daily
priority: 1.0
comments: true
toc: true
toc_sticky: true
toc_label: "Start Blog"
---
수식 추가하기
- 기본적으로 Latex 문법을 따른다. Latex 기호
블록 수식 추가
\[f_x = x^2 + 3\]$$
f_x = x^2 + 3
$$
inline 수식 추가
- inline mathjax $y_t = {x \over t}$
$y_t = {x \over t}$
이미지 추가
![이미지 대체 텍스트](이미지 경로)
Post 게시
- markdown 파일 이름은 yyyy-mm-dd-postname.md 형식으로 짓기
개인 pc에서 git을 사용한 게시
- 이 저장소를 clone해서 사용하는 경우 항상 git pull 명령 사용 후 게시
- 작성한 markdown 파일은 _posts 폴더에 넣기
- bundle exec jekyll serve 명령을 이용해 jekyll 컴파일
- localhost 주소에서 올린 게시글이 잘 올라갔는지 확인
- 로컬 서버 종료 후 github 저장소에 push
파일 업로드
- markdown 파일을 업로드 한 후 관리자에게 알려주기
member 추가하기
- _config.yml 파일에 members에서 추가 가능하다.
People:
- name: 이름
interests: "관심사"
gitblog: "블로그나 github 주소"