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

Manipulation utilities

Open asg017 opened this issue 4 years ago • 0 comments

UDFs to manipulate html documents: classes, attributes, children, text content, etc.

  • [ ] Attributes
    • [ ] html_attr_set(doc, selector, name, value)
    • [ ] html_attr_remove(doc, selector, name)
  • [ ] Elements
    • [ ] html_append(doc, selector, value)
    • [ ] html_append_all(doc, selector, value)
    • [ ] html_replace(doc, selector, value)
    • [ ] html_replace_all(doc, selector, value)
    • [ ] html_set(doc, selector, value)
    • [ ] html_set_all(doc, selector, value)
    • [ ] html_remove(doc, selector)
    • [ ] html_remove_all(doc, selector)
  • [ ] Classes
    • [ ] html_class_add(doc, selector, name)
    • [ ] html_class_remove(doc, selector, name)

asg017 avatar Oct 20 '21 23:10 asg017