Hexo 블로그 세팅 방법

Hexo 카테고리 생성 방법

카테고리를 어떻게 만드는지 몰라서 한참 헤멨다.

따로 카테고리를 미리 구성해 놓고 그걸 글에서 지정하는 것이 아니고, hexo new로 새 포스트를 작성하고 그 글(.md 파일)에 categories를 써주면 그것들을 모아서 카테고리를 구성해 주는 방식이었다.

이 글에 지정된 태그와 카테고리는 다음과 같다.

1
2
3
tags: [hexo, category]
categories:
- [Web Programming, Hexo]

Hexo 사용 방법

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment