美文网首页
2021-11-01 把文章提交到自己的GitHub.io

2021-11-01 把文章提交到自己的GitHub.io

作者: Priders | 来源:发表于2021-11-02 11:50 被阅读0次

    集成Hexo 框架的GitHub 博客框架

    1、安装node.js
    使用homebrew
    brew install node

    2、安装 Hexo
    所有必备的应用程序安装完成后,即可使用 npm 安装 Hexo。
    npm install -g hexo-cli

    3、建站
    安装 Hexo 完成后,请执行下列命令,Hexo 将会在指定文件夹中新建所需要的文件。
    hexo init XXX
    cd XXX
    npm install

    4、设置主题
    https://hexo.io/themes/选择一个
    安装选择的主题进行初始化 拉去其源码
    进入hexo配置进行主题的绑定(设置_config.yml 中theme)

    我选择的是 icalm (https://github.com/nameoverflow/hexo-theme-icalm
    如果要开启 tag 和 categories (估计大家都想要开启)需要注意 直接去修改主题里的
    hexo-theme-icalm/_config.yml 注意空格 格式要求

    Tags or Categories Page
    Run hexo n page "tags" or hexo n page "categories"
    Then edit the generated .md file, set the type to tags or categories.
    新建出来的页面 顶部type设置为对应的tags categories


    image.png

    写完你的文章之后 注意顶部的格式


    image.png

    调用Hexo generate 把它进行静态化(转为html)
    然后deploy 或者你使用git提交到你的GitHub或者网站即可(public)

    相关文章

      网友评论

          本文标题:2021-11-01 把文章提交到自己的GitHub.io

          本文链接:https://www.haomeiwen.com/subject/dejzaltx.html