Releases: gabebw/candle
Releases · gabebw/candle
v0.9.0
v0.8.0
v0.7.0
- If no selector is provided, pretty-print the HTML:
curl ... | candle
(#16) - When pretty-printing, show self-closing tags without children on 1 line:
<meta ...></meta>
(#11) - Exit quickly if the CSS selectors are malformed (previously, it was parsing the HTML before showing any CSS selector errors. Now it shows errors before doing any HTML parsing.) (9ef7d8e)
- Don't panic when output is truncated in a pipeline:
curl ... | candle | head
now does what you'd expect. (#13)
v0.6.0
v0.5.0
- Fix crash that happened when there was <1024 bytes of input HTML (9f38d93)
- Finders for the same node are shown together. Previously, searching for
div attr{class}
anddiv {text}
would show all of theclass
es, then all of thetext
s. Now it will show the information for a given node next to each other. So it will show each div's class, then that same div's text, then the next div's class and text, and so on. (#4)