We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
不蒜子文章统计量中间有个/,我看了一些文件没有发现,这个/是怎么生成的,在busuanzi-analytics.ejs文件中并没有发现多了这个/,因为没有学习过js语法,所以并不知道问题出在哪里?请问,我该怎样进行修改呢?
The text was updated successfully, but these errors were encountered:
你好,
关于文章详情中,副标题中不蒜子的统计,中间的/是因为在样式设置的时候统一分割了。
关于这个样式,是在hexo-theme-hipaper/source/css/_partial/article.styl文件中.article -> .article-meta -> span处定义的,如果直接去除了content:'/'的话将会导致副标题没有分割,所有的文字挤在一起。
hexo-theme-hipaper/source/css/_partial/article.styl
.article -> .article-meta -> span
其实这个点并不影响功能和一致美观度。
如果你认为这个'/'就是看着不舒服,我可以给你提出两种修改方式。
第一种,将hexo-theme-hipaper/layout/_partial/post/busuanzi-analytics.ejs中的 <span id="busuanzi_value_page_pv"></span>更改为 <i id="busuanzi_value_page_pv"></i>,这样改的依据是span和i标签都是行内内联元素,并且自身没有样式,所以可以直接替换。这种方式也是我推荐你使用的。
hexo-theme-hipaper/layout/_partial/post/busuanzi-analytics.ejs
<span id="busuanzi_value_page_pv"></span>
<i id="busuanzi_value_page_pv"></i>
span
i
第二种,把这个位置的其他的span标签替换成i标签,然后将hexo-theme-hipaper/source/css/_partial/article.styl文件中.article -> .article-meta -> span的这个span直接编辑为i,原理与第一种相同。不过改动位置较多,更改也较复杂。
我个人不建议你进行修改,未来我们还会继续完善这个主题,届时你只需要git pull一条命令即可更新到我们最新版本的主题。
git pull
感谢你的反馈。
Sorry, something went wrong.
@iTimeTraveler 已解决,请更改本条issue的状态
No branches or pull requests
不蒜子文章统计量中间有个/,我看了一些文件没有发现,这个/是怎么生成的,在busuanzi-analytics.ejs文件中并没有发现多了这个/,因为没有学习过js语法,所以并不知道问题出在哪里?请问,我该怎样进行修改呢?
The text was updated successfully, but these errors were encountered: