Xuanzi

Results 8 comments of Xuanzi

@mdrokz sorry for the late reply, this crate does not support xpath selectors. If this requirement is common, I plan to take the time to add this feature recently.

@mdrokz I have added a [new feature branch](https://github.com/fefit/visdom/tree/feature/addXpathSupport) to support xpath selectors. The query methods in this crate used to only accept the type `&str` as a selector parameter, so...

@imayatech since `FET` will translate the code into `html/template` template code, the `func.go` provides a method named `safe` to allowed HTML output. [https://github.com/fefit/fet/blob/9e2ebbd55cc8678c84d2742234dc69c3bbc876b3/lib/funcs/funcs.go#L226](https://github.com/fefit/fet/blob/9e2ebbd55cc8678c84d2742234dc69c3bbc876b3/lib/funcs/funcs.go#L226) so you can use the method in...

@goharahmed sorry for the late reply, there is indeed issue here, the parsing process does not adapt well to float numbers (1.) and field reading. A simple solution would be...

@goharahmed We should have had a similar situation in the past. This project was originally developed to facilitate others to switch from PHP `Smarty` to golang `template` without spending too...

这块的设计的确和 `jQuery` 不太相同,`load` 方法加载的可能是整个html页面,也可能是html片段,与 `cheeriojs` 中的 [load](https://cheerio.js.org/docs/basics/loading) 方法更类似。 ```js // jquery 中解析的主要是元素节点 $("").length // 0 $("").length // 1 ``` `load` 方法得到的是个虚拟根节点,根节点上实际上只能进行一些查找操作和节点修改操作,其它操作则可能会报上面的错误,当初为了操作相对方便, `load` 方法返回的数据类型也是 `Elements`,后面有时间打算把它做成单独的类型,限制下它的可操作范围,防止出现上面的操作错误了。感谢反馈建议!

Hi, i meet the same issue, any progress on this? In earlier versions of `LibreOffice` (i have tried the version 6.1.5), everything just ok. But in the latest versions (i...

@undeflife Thanks for your hard work. I'm using an earlier version now. Since this is a bug in `LibreOffice` itself, so i think invoking the `destroy` method in `Drop` is...