diff --git a/CHANGELOG.md b/CHANGELOG.md index 9de958c..d3d1ce7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,7 +23,6 @@ Previously these functions required `NodeId` as a parameter. - Added `NodeRef::append_prev_siblings` method, which allows to prepend other nodes and their siblings before the selected node. ### Fixed -- Fixed `Tree::append_prev_siblings_from_another_tree` method. It didn't assign `TreeNode.prev_sibling` properly. - Fixed ` as selectors::Element>::is_empty` to correctly handle line breaks, whitespace, and ensure only elements pass the check. ### Removed diff --git a/README.md b/README.md index 002825d..35d7bc7 100644 --- a/README.md +++ b/README.md @@ -636,7 +636,7 @@ assert_eq!(doc.select("div.content > p").length(), 4); - **[more examples](./examples/)** -- **[dom_query by example](https://github.com/niklak/dom_query/wiki/dom_query-by-Example)** +- **[dom_query by example](https://niklak.github.io/dom_query_by_example/)** @@ -654,7 +654,7 @@ assert_eq!(doc.select("div.content > p").length(), 4); - `hashbrown` — optional, standard hashmaps and hashsets will be replaced `hashbrown` hashmaps and hashsets; ## Possible issues -* [wasm32 compilation](https://github.com/niklak/dom_query/wiki/WASM32-compilation) +* [wasm32 compilation](https://niklak.github.io/dom_query_by_example/WASM32-compilation.html) ## Changelog