Fuzi icon indicating copy to clipboard operation
Fuzi copied to clipboard

A fast & lightweight XML & HTML parser in Swift with XPath & CSS support

Results 26 Fuzi issues
Sort by recently updated
recently updated
newest added

fix for https://github.com/cezheng/Fuzi/issues/120

### Description: * Expected behaviour: element.firstChild(tag: "text") return first text node instead of element node with tag name "text" * Actual behaviour: returns element not text node ### Environment *...

### Description: * Expected behaviour: The `~=` infix operator declaration should use the same precedence (`ComparisonPrecedence`) as Swift's built-in operator. * Actual behaviour: `Node.swift` defines the `~=` infix operator as...

On the system `libxml2-dev` package is installed, and `/usr/include/libxml -> /usr/include/libxml2/libxml` symlinked and `/usr/include/libxml2/module.modulemap ` exists with the following content: ``` module libxml2 [system] [extern_c] { link "xml2" umbrella "libxml"...

- Fix compiling for Linux through SPM - Add GitHub Actions (checks on Linux, macOS 10 and macOS 11) Kudos to https://github.com/SwiftDocOrg/Markup as I've copied much of their setup. It...

### Description: * Expected behaviour: Fuzi builds * Actual behaviour: Fuzi fails to build ### Environment * Package Manager: - [ ] Carthage, version: - [ ] CocoaPods, version: -...

I have a use case where I need to access the namespace URIs declared in the root element. Fuzi's default namespace handling works well for me and I have ready...

### Description: * Expected behaviour: plain text: `hello` parsed html: `hello` * Actual behaviour: plain text: `hello` parsed html: `hello ` ### Environment * Package Manager: - [ ] Carthage,...

### Description: * Expected behaviour: XPath look from node not root. * Actual behaviour: XPath look from root not node. For example, I looked for 20 nodes with a certain...

Hi guys, maybe you can help me to resolve my issue. I'm using Fuzi in my framework for at least a year, it works great. I even did one PR...