Miblog demo

This is a demo blog using Miblog.

This is the second post

Wow, already another post?

That's wonderful!

This is the first post

Use Markdown to write your posts!

function timeout(milliseconds = 0) {
    return new Promise(resolve => setTimeout(resolve, milliseconds));
}

async function main() {
    console.log('Give me a second...');
    await timeout(1000);
    console.log('Ok I\'m here!');
}