For Samsung Health (Android) blood pressure html format export.
This grabs all the values in #clojure for #clerk table:
```
(defn bp-table
[fname]
(let [all-tds (select/select
(select/child
(select/tag :td))
(hickory/as-hickory
(hickory/parse (slurp fname))))
xf (comp
(drop 11)
(map :content)
(partition-all 7)
(map flatten))]
(into [] xf all-tds)))
```






