{% github it-boyer blogDocs 978ed39 width = 30% %}

忽略配置

文档库主要整理kindle读书笔记,jazzy文档相关html页面,放在hexo中不需要经过md转换html过程。故需要通过hexo的skip_render配置机制,来屏蔽一些目录/文件等。

1
skip_render: ["*.html","docs/*/*"]

这样,在hexo g过程,跳过这些文件,目录的编辑过程,直接拷贝到public中发布。 skip_render参考

docs配置

  1. 位置考虑 docs放在在source目录下,目录结构:
1
2
3
4
5
6
7
├── souce
    ├── _post       //博客
    ├── tags        //标签
    ├── categories  //分类
    ├── docs        //文档库
        ├── index.md
        └── kindle笔记

其他配置可以按照tag,categories相关配置,显示在网页中。 2. 版本控制 考虑docs文档库的容量递增,选择git submodule来管理docs文档库,集成到hexo主库中。