bulandent

Results 18 comments of bulandent

这里有更详细的主题使用说明: https://github.com/Bulandent/hexo-theme-bubuzou/blob/master/doc/doc-zh.md 针对提到的几个点,回答如下: 1. 单词高亮可以用 `background` 表示; 2. 支持横线问题,md文件里写---,在生成的html文件里是有hr标签的,只是样式被消除了,如果对 横线有需求,可以自己去修改样式文件哈 3. tags问题,tags标签是支持中文的,写法是这样,在md文件的开头定义文章变量,上面链接的说明里 也有截图的: tags: - css - 样式表

``` function reverseStr(str) { return str.split(' ').filter(item => item).reverse().join(' ') } ```

也可以看看这里 [浏览器专题之安全篇](https://bubuzou.com/2020/12/04/web-security/)

parent.wpy: ``` parent child view ``` child.wpy: ``` child ``` 期望的编译后的template是: ``` parent child child view ``` 而实际wepy2编译后的template是会将对应的内容插入到子组件与根元素并列那级: ``` parent child child view ```

> 遇到同样问题,看上去是编译后 将 `"\e69e"` 转换成了 开发者工具无法识别的 未知字符,导致报错。 > > 我的解决办法是将字体图标样式写在 `` (去掉`lang="scss"`属性)标签下,这样不会经过scss的编译,会直接复制到最终的 .wxss 文件中。 我也是这么处理的。

这里有一份wepy2升级指南 https://github.com/Bulandent/blog/issues/4

> This issue with the popover showing in the wrong position appears when the status bar translucency is different in the popover. There are 2 cases: > > 1. The...