get_articleinfo = ({ article, wikipedia = "en.wikipedia.org" }) => {
return fetch(
`https://xtools.wmcloud.org/api/page/articleinfo/` +
wikipedia +
`/` +
article
)
.then((d) => d.json())
.then((d) =>
aq.table({
article: [article],
watchers: [d["watchers"]],
pageviews: [d["pageviews"]],
revisions: [d["revisions"]],
editors: [d["editors"]]
})
);
}