Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

wikiParse

import { wikiParse } from "https://raw.githubusercontent.com/el3um4s/DenoWiki/master/mod.ts";

Returns the contents of a Wikipedia page

const wikiPageByID = await wiki.wikiParse( { pageid: 13834, language: "en" } );
const wikiPageByTitle = await wiki.wikiParse( { title: '"Hello, World!" program', language: "en" } );
async function wikiParse(options?): Promise<WikiParse_Query>;
§
wikiParse(options?): Promise<WikiParse_Query>
[src]

§Parameters

§
options? optional
[src]

§Return Type