-
-
Notifications
You must be signed in to change notification settings - Fork 57
Open
mattvick/wiki
#1Labels
Description
Page.content() is set to return a promise of a string, however this is not always the case. Sometimes (more often than not it seems) it returns a promise for an array of page sections.
wiki().page('January_12').then(p => p.content()).then(async res => {
console.log(res);
});[
{
title: 'Events',
content: '',
items: [ [Object], [Object], [Object] ]
},
{
title: 'Births',
content: '',
items: [ [Object], [Object], [Object] ]
},
{
title: 'Deaths',
content: '',
items: [ [Object], [Object], [Object] ]
},
{
title: 'Holidays and observances',
content: 'Christian feast day:\n' +
'Aelred of Rievaulx\n' +
'Benedict Biscop\n' +
'Bernard of Corleone\n' +
'Marguerite Bourgeoys\n' +
'Tatiana\n' +
'January 12 (Eastern Orthodox liturgics)\n' +
'Memorial Day (Turkmenistan)\n' +
'National Youth Day (India)\n' +
"Prosecutor General's Day (Russia)\n" +
'Zanzibar Revolution Day (Tanzania)\n' +
'Aseggwas Amaziɣ, ⴰⵙⴳⴳⴰⵙ ⴰⵎⴰⵣⵉⵖ (Algeria)'
},
{ title: 'References', content: '' },
{
title: 'External links',
content: 'BBC: On This Day\n' +
'\n' +
'The New York Times: On This DayHistorical Events on January 12\n' +
'Today in Canadian History'
}
]
Reactions are currently unavailable