smallyunet / hexo-theme-yinwang

Hexo blog theme, Wang Yin’s blog theme, yinwang.org style.
https://www.smallyu.net
59 stars 9 forks source link

作者,考虑支持一下上下标吗. #2

Closed jauzzz closed 5 years ago

jauzzz commented 5 years ago

编辑器里 image

页面上 image

smallyunet commented 5 years ago

@jauzzz 你好,这也许是MarkDown语法差异带来的问题,请尝试使用这样的方式来表示上下标:

// 下标
H<sub>2</sub>O
// 上标
x<sup>2</sup>

这是页面上的效果: 搜狗截图20190824113237

jauzzz commented 5 years ago

噢噢,确实如此!感谢.

jauzzz commented 5 years ago

我看最新commit提交了tag cloud的功能,更新之后导航栏出现了标签云,点击报错 Cannot GET /tags/,请问有更具体的食用方式吗

smallyunet commented 5 years ago

@jauzzz 抱歉这是我的失误,我不该把它放在默认配置里。

要使用的话,可以先new一个页面:

hexo new page tags

然后把页面type设置为tags,也就是修改source/tags/index.md,修改之后看起来是这样:

---
title: 标签云
date: 2019-08-24 22:00:47
type: tags
---

应该就可以访问了:http://localhost:4000/tags

当然,要保证依赖中安装了hexo-generator-tag,查看package.json如果依赖中没有这一项,可以运行命令安装它:

npm install hexo-generator-tag --save
jauzzz commented 5 years ago

吃上了!感谢作者!!!