hexo new draft テストページ INFO Created: C:\....\<<サイト名>>\source\_drafts\テストページ.md
hexo server --draftでドラフトを表示して確認。
1 2 3
hexo server --draft INFO Start processing INFO Hexo is running at http://localhost:4000 . Press Ctrl+C to stop.
hexo publishでドラフトをリリース。
1
hexo publish テストページ
hexo serverでリリースしたページを表示して確認。
1 2 3
hexo server INFO Start processing INFO Hexo is running at http://localhost:4000 . Press Ctrl+C to stop.
ページ作成 - リリースのみ
ドラフトは作成せずリリースする場合、hexo newで作成。
1 2
hexo new テストページ INFO Created: C:\....\<<サイト名>>\source\_posts\テストページ.md
hexo serverでリリースしたページを表示して確認。
1 2 3
hexo server INFO Start processing INFO Hexo is running at http://localhost:4000 . Press Ctrl+C to stop.
静的サイトの作成
hexo generateでサイト一式がpublishフォルダーに作成される。
1 2 3 4 5 6 7 8 9
hexo generate hexo generate INFO Start processing INFO Files loaded in9.24 s INFO Generated: post-sitemap.xml INFO Generated: atom.xml INFO Generated: sitemap.xml INFO Generated: sitemap.xsl INFO Generated: categories/テスト/index.html
hexo cleanでサイト一式クリアできる。
1 2 3
hexo clean INFO Deleted database. INFO Deleted public folder.