get_prose = ({ article, wikipedia = "en.wikipedia.org" }) => {
return fetch(
`https://xtools.wmcloud.org/api/page/prose/` + wikipedia + `/` + article
)
.then((d) => d.json())
.then((d) =>
aq.table({
article: [article],
characters: [d["characters"]],
words: [d["words"]],
references: [d["references"]],
unique_references: [d["unique_references"]],
sections: [d["sections"]]
})
);
}