Hugo中文文件 快速開始

2021-10-01 21:03:49 字數 2450 閱讀 4784

1. 二進位制安裝(推薦:簡單、快速)

mac下直接使用homebrew安裝:

brew install hugo
2. 原始碼安裝

原始碼編譯安裝,首先安裝好依賴的工具:

設定好gopath環境變數,獲取原始碼並編譯:

如果需要更新所有hugo的依賴庫,增加-u引數:

$ go get -u -v github.com/spf13/hugo
使用hugo快速生成站點,比如希望生成到/path/to/site路徑:

$ hugo new site /path/to/site
這樣就在/path/to/site目錄裡生成了初始站點,進去目錄:

$ cd /path/to/site
站點目錄結構:

▸ archetypes/

▸ content/

▸ layouts/

▸ static/

config.toml

建立乙個about頁面:

$ hugo new about.md
about.md自動生成到了content/about.md,開啟about.md看下:

+++

date = "2015-10-25t08:36:54-07:00"

draft = true

title = "about"

+++正文內容

內容是markdown格式的,+++之間的內容是 toml 格式的,根據你的喜好,你可以換成 yaml 格式(使用---標記)或者 json 格式。

建立第一篇文章,放到post目錄,方便之後生成聚合頁面。

$ hugo new post/first.md
---

date: "2015-10-25t08:36:54-07:00"

title: "first"

---### hello hugo

1. aaa

1. bbb

1. ccc

到 **列表 挑選乙個心儀的**,比如你覺得hyde**不錯,找到相關的github位址,建立目錄themes,在themes目錄裡把**git clone下來:

# 建立 themes 目錄

$ cd themes

$ git clone

在你的站點根目錄執行hugo命令進行除錯:

$ hugo server --theme=hyde --builddrafts
(註明:v0.15 版本之後,不再需要使用--watch引數了)

瀏覽器裡開啟:http://localhost:1313

假設你需要部署在github pages上,首先在github上建立乙個repository,命名為:coderzh.github.io(coderzh替換為你的github使用者名稱)。

在站點根目錄執行hugo命令生成最終頁面:

$ hugo --theme=hyde --baseurl=""
(注意,以上命令並不會生成草稿頁面,如果未生成任何文章,請去掉文章頭部的draft=true再重新生成。)

如果一切順利,所有靜態頁面都會生成到public目錄,將pubilc目錄裡所有檔案push到剛建立的repository的master分支。

$ cd public

$ git init

$ git remote add origin

$ git add -a

$ git commit -m "first commit"

$ git push -u origin master

瀏覽器裡訪問:

Pentaho bi 中文文件

目錄 building and debugging pentaho with eclipse zh cn 1.5.4 getting started with the bi platform zh cn 1.5.4 pentaho building components 1.5.4 pentaho ...

vim 中文文件

安裝中文幫助文件之前首先執行下列操作 在home目錄下列新建資料夾 vim vim是乙個隱藏檔案,不要漏了 vim plugin vim目錄下的plugin資料夾 vim doc vim目錄下的doc資料夾 vim syntax vim目錄下的syntax資料夾 在home目錄下新建隱藏檔案 vim...

sklearn中文文件

apachecn cwiki 位址為 scikit learn 0.18 中文文件 sklearn 基於 python 語言的,簡單高效的資料探勘和資料分析工具,建立在 numpy,scipy 和 matplotlib 上。以下是 sklearn 官方文件中文版,如果你也有興趣,歡迎來一起來維護迭代...