jqのxml/htmlバージョンみたいなもの
$ tidy -i -utf8 パースしたい文字列
パイプで使うことの方が多いと思う
$ curl "https://newspicks.com/" | tidy -i -utf8
color_echoで見たいところに色をつけると、なお見やすい
$ curl "https://newspicks.com/" | \
tidy -i -utf8 | \
colorecho -p "title _ellipsis" -H h_cyan
以上。