-
See [PR16](https://github.com/lexborisov/lexbor/pull/16#issuecomment-423666442).
-
`lxb_html_serialize_tree_str()` crashes on orphaned text nodes.
Minimal reproduction example:
```c
#include
void serialize(lxb_dom_node_t* node, lxb_dom_document_t* document) {
lexbor_st…
-
I have run into problem. I have exact same code as in docs and i use it in c++ file. But I run into errors.
Code:
``` lxb_status_t status;
const lxb_char_t *tag_name;
lxb_html_document…
-
Is there a way to make a (deep?) copy of an element/node? I can't find any fast way to do this.
Copying element content and reparsing seems not the best performance option...
-
In Modest, the `modest_finder_by_selectors_list` includes the specified node when searching for HTML.
In Lexbor, the first node (root node) gets ignored.
I use the following function:
`lxb_select…
-
Hello,
I have been attempting to find a table element by its header, to then extract and print its raw data value from between the `` tags. The line of HTML with the value of interest being 0.7 can…
-
mainly, 2 kinds of warnings:
```
warning: unused parameter
warning: comparison of integers of different signs
```
@lexborisov is it worth fixing them ?
-
I noticed the following bugs when it comes to attributes:
1. Setting id or class attributes on a node that has been created by the HTML parser leads to a crash
2. Setting id or class attributes on…
-
In Modest, it's possible to retrieve the raw value (undecoded text) of a node using `myhtml_tree_node_t.token.element_begin` and `myhtml_tree_node_t.token.element_length`.
Is it possible in lexbor?…
-
Perhaps this just isn't documented, but it looks like you cannot use Lexbor for parsing ASCII-incompatible HTML documents.
Parsing documents that are encoded with some western encoding or UTF-8 seems…