Skip to content
llminatoll edited this page Oct 9, 2017 · 3 revisions

esa→GitHub→TravisCI→Hexoで、ポートフォリオを自動化したときのメモです

記事を消す時、リネームする時

まず普通にmasterブランチで source/_posts内の記事ファイル(.md)を消すなりリネームするなりする。

そのあと

hexo clean
hexo generate

で、git pushして完了。

参考: https://azriton.github.io/2017/01/09/Hexo%E3%81%AE%E6%8A%95%E7%A8%BF%E8%A8%98%E4%BA%8BURL%E3%82%92%E5%A4%89%E6%9B%B4%E3%81%99%E3%82%8B/

RSS対応する方法

npm update
npm install hexo-generator-feed

ちゃんとRSSが吐き出されるようになったか見てみる。

hexo generate
hexo server

ローカルで確認してみる。 http://localhost:4000/atom.xml ちゃんとRSSの中身が表示されてたら、git pushで完了。

参考: http://qiita.com/f_prg/items/c5a465c79a9980b98495

OGP

テーマの中の_config.ymlに書けばOK https://hexo.io/docs/helpers.html#open-graph

記事にタグを関連づけたい

source/_posts内のmdファイルを開き、tags欄に入れたいタグを書く

例:

---
title: "わかばちゃんと学ぶGit使い方入門 評判まとめ"
category:
tags:
- 著書
- わかばちゃんと学ぶGit使い方入門
- レビュー
created_at: 2017-07-06 17:55:28 +0900
updated_at: 2017-07-06 22:28:14 +0900
published: true
number: 324
---

これでhexo generateすればOK

Clone this wiki locally