async function main() { // Get body.html const body = utf8Decode(await getFile("body.html")); // Build the document const document = ` ${body} `; // Send it to the browser app.setDocument(document); } main();