User Guide


Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

bash
$ hexo new "My New Post" 

More info: Writing

Run server

bash
$ hexo server

More info: Server

Generate static files

bash
$ hexo generate

More info: Generating

Deploy to remote sites

bash
$ hexo deploy

More info: Deployment


版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 !
评论
1 comment
Anonymous
Markdown is supported
@darcyzhc
darcyzhccommentedabout 5 years ago

这是Hexo初始自带的博客

 上一篇
博客系统使用说明 博客系统使用说明
本文介绍了Hexo编写博客的流程,记录了在原主题上做的修改,博客系统迁移流程,博客SEO方法及其优化,还有Hexo内容生成原理,以及一些相关的资源链接。 写博客流程 在./source/_posts文件夹新建.md文档,或者在根目录执行
2020-04-15
下一篇 
链表的应用 链表的应用
题目:求相邻k个节点数值之和最大的第一节点输入数据(设为整型)建立单链表,并求相邻k个节点data值之和为最大的第一节点。例如输入k = 2,数据为2 6 4 7 3 #(#为结束符),建立下面链表,运行结果输出(序号3,data值4):
2017-05-20