wujun234 / hexo-theme-tree

MIT License
210 stars 60 forks source link

使用主题失败, 希望提供一个完整版的使用Demo #5

Closed YellowTulipShow closed 4 years ago

YellowTulipShow commented 4 years ago

类似于这种的:

图片

主要是看 _config.yml 文件 包引用文件的配置项,

图片

我在生成步骤出错, 安装了 markdown-it 文章内容是我自己写的内容 地址是: https://github.com/YellowTulipShow/-ArticleNotes 基本上是直接全部拷贝到 source/_posts/ 下的, 基本上没有做额外的操作

YellowTulipShow commented 4 years ago

完整的仓库地址: https://gitee.com/YellowTulipShow/TestHexo.git

wujun234 commented 4 years ago

_config.yml 文件没有任何跟主题有关的配置项

wujun234 commented 4 years ago

我的 _config.yml 文件里 Markdown-it 的配置是这样的

# Markdown-it config
markdown:
  render:
    html: true
    xhtmlOut: false
    breaks: false
    linkify: true
    typographer: true
    quotes: '“”‘’'
  plugins:
    - markdown-it-abbr
    - markdown-it-footnote
    - markdown-it-ins
    - markdown-it-sub
    - markdown-it-sup
  anchors:
    level: 2
    collisionSuffix: 'v'
    permalink: true
    permalinkClass: header-anchor
    permalinkSymbol: ''
YellowTulipShow commented 4 years ago

引用的包配置能发我一下吗? package.json 是不是各包版本的问题

wujun234 commented 4 years ago

没见其它人遇到这个问题啊

package.json

{
  "name": "hexo-site",
  "version": "0.0.0",
  "private": true,
  "scripts": {
    "build": "hexo generate",
    "clean": "hexo clean",
    "deploy": "hexo deploy",
    "server": "hexo server"
  },
  "hexo": {
    "version": "4.0.0"
  },
  "dependencies": {
    "hexo": "^4.0.0",
    "hexo-asset-image": "git+https://github.com/CodeFalling/hexo-asset-image.git",
    "hexo-deployer-git": "^2.1.0",
    "hexo-directory-category": "^1.0.7",
    "hexo-generator-archive": "^1.0.0",
    "hexo-generator-baidu-sitemap": "^0.1.6",
    "hexo-generator-category": "^1.0.0",
    "hexo-generator-index": "^1.0.0",
    "hexo-generator-sitemap": "^2.0.0",
    "hexo-generator-tag": "^1.0.0",
    "hexo-renderer-ejs": "^1.0.0",
    "hexo-renderer-markdown-it": "^4.0.0",
    "hexo-renderer-stylus": "^1.1.0",
    "hexo-server": "^1.0.0"
  }
}
YellowTulipShow commented 4 years ago

首先非常感谢你的分享, 但我放弃使用这些框架了, 全都是坑, 按照官网教程一步步来都搞不了, 各种配置还贼麻烦, 也有可能是我太菜了. 我打算用Python自己写一个本地静态网页生成器, 就是简单的将一个项目下的 .md 文件都转化成对应的 .html 再写个首页和列表页组合起来就可以了, 再次感谢你, 谢谢

wujun234 commented 4 years ago

生命不息,折腾不止😂