|
auto | appendMaterialize (auto &parent, auto const &htmlElement) |
| Creates new actual element and makes it a child of the given parent. More...
|
|
auto | fragmentMaterialize (auto &parent, auto const &htmlElement) |
| Similar to appendMaterialize, but the new element is not added to the children list. More...
|
|
auto | insertMaterialize (std::size_t where, auto &parent, auto const &htmlElement) |
| Inserts new element at the given position of the given parent. More...
|
|
auto | replaceMaterialize (auto &element, auto const &htmlElement) |
| Replaces the given element with the new one. More...
|
|
auto | emplaceMaterialize (auto &element, auto const &htmlElement) |
| Replaces the given element with the new one. More...
|
|
auto | inplaceMaterialize (auto &element, auto const &) |
| Used for elements that dont have a direct parent. More...
|
|