html-parser icon indicating copy to clipboard operation
html-parser copied to clipboard

A simple and general purpose html/xhtml parser, using Pest.

Results 10 html-parser issues
Sort by recently updated
recently updated
newest added

hi there, i'm trying to use your library (0.7.0) but am facing a problem when parsing, for example, . the error thrown is similar to: ```rust running 1 test Failed...

Thanks for the great library. I use it for parsing a kind of html (not real html with a lot of custom elements). I could really need a function which...

```rust let html=r#" 'insert into biz_activity' '${key}' 'values' '${item}' "#; let dom = Dom::parse(html).unwrap(); ``` ``` called `Result::unwrap()` on an `Err` value: Parsing(" --> 1:23\n |\n1 | \n | ^---\n...

Hey there :) I have a pipeline like ``` markdown -> [comrak] -> html html -> [html-parser] -> nodes nodes -> [my-logic] -> html html ``` And, it took me...

the parser loops forever when parsing this file [html_file](https://pastebin.com/raw/eSBEZXLt)

``` $ cargo install html_parser Updating crates.io index Downloaded html_parser v0.7.0 Downloaded 1 crate (54.8 KB) in 0.62s error: there is nothing to install in `html_parser v0.7.0`, because it has...

Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.52 to 0.10.55. Release notes Sourced from openssl's releases. openssl-v0.10.55 What's Changed Fix warnings from BoringSSL on Rust 1.70 by @​alex in sfackler/rust-openssl#1948 Honor OPENSSL_NO_OCB if OpenSSL...

dependencies

Here is some part of my html file: ``` { 778 "name": "div", 779 "variant": "normal", 780 "classes": [ 781 "pl-3" 782 ], 783 "children": [ 784 { 785 "name":...

Hey @mathiversen, just wanted to drop a word of encouragement here! Excellent work on this. The Pest setup looks pretty slick. I have a new project which I am starting...

Text elements with only spaces (like the one between two tags) should not be removed. I'm new to Pest so I hope that the proposed change makes sense. Don't hesitate...