我是靠谱客的博主 执着豆芽,最近开发中收集的这篇文章主要介绍hexo搭建个人博客并且其他人的博客转载到hexo博客上,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

git clone https://gitee.com/tanghuan0827/hexo-starter.git
npm install hexo --save
npm install -g hexo-cli

1.安装nodejs

(这里有个坑,需要安装高版本的node 10以上,反正8有点问题)

npm config set registry https://registry.npm.taobao.org
npm config set registry https://registry.npm.taobao.org
npm i hexo-cli -g
hexo -v

2.让github与hexo有关系

github创建账号和仓库
tanghuan0827/tanghuan0827.github.io

ssh-keygen -t rsa -C "1255196919@qq.com"
git config --global user.name "tanghuan0827"
git config --global user.email "1255196919@qq.com"
ssh -T git@github

_config.yml 这里需要设置repo 这样hexo d上传文件到github就不需要输入用户名和密码

deploy:
type: git
repo: git@github.com:tanghuan0827/tanghuan0827.github.io.git
branch: master

2.hexo的命令

hexo init MyBlog
cd MyBlog
npm install
生成静态文件
hexo g
hexos本地启动 http://localhost:4000/
hexo s
将本地代码上传到github中
hexo d

3.写文字发布博客

hexo new post "article title"

source_posts的目录,生成 article-title.md

最后访问的页面
https://tanghuan0827.github.io/

4.md文件支持html文件

将html的标签加入到这个标签中间

{% raw %}
{% endraw %}

5.更改主题和颜色

git clone https://github.com/zthxxx/hexo-theme-Wikitten themes/hexo-theme-Wikitten

_config.yml 设置
theme: hexo-theme-Wikitten

最后

以上就是执着豆芽为你收集整理的hexo搭建个人博客并且其他人的博客转载到hexo博客上的全部内容,希望文章能够帮你解决hexo搭建个人博客并且其他人的博客转载到hexo博客上所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部