Releases: kelko/html-streaming-editor
Releases · kelko/html-streaming-editor
v0.0.7
- Switched DOM handling from pure tl to rctree based model
- new commands:
CLEAR-ATTR{attr_name}
: remove a given attribute
CLEAR-CONTENT
: remove all children of an element
v0.0.6
Changed syntax
- still prefixed syntax
- uses {} instead of ()
- puts those { behind the command, being more similar to function calls
- does not require wrapper chars for CSS selector anymore
Before:
hse -i index.html '(ONLY ?main, .main?) | (WITHOUT ?script?)'
Now:
hse -i index.html 'ONLY{main, .main} | WITHOUT{script}'
v0.0.5
Fix for 0.0.4
Also added logging and simplified some code
v0.0.4
Error handling instead of hard panics
v0.0.3
Implementation of (FILTER 'selector')
command:
removes all nodes matching the selector from the document
v0.0.1
First, very alpha, stage. Only one "command" works yet, but that already does work. So: Yeay ?!