Database Reference
In-Depth Information
As the screenshot shows, this page contains a list of sections, and each section contains a list
of characters:
How to do it…
1.
Since this is more complicated, we'll break the task down into a set of
smaller functions:
(defn get-family
"This takes an article element and returns the family
name."
[article]
(string/join
(map html/text (html/select article [:header :h2]))))
 
Search WWH ::




Custom Search