Hello World!

2023-10-04

Hello World!

This is just a Markdown rendering test

Heading 2

It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness, it was the epoch of belief, it was the epoch of incredulity, it was the season of Light, it was the season of Darkness, it was the spring of hope, it was the winter of despair.

Heading 3

Here is some code that I use to render this page. A function called getStaticPaths()

export async function getStaticPaths() {
  const paths = getAllPostIds();
  return {
    paths,
    fallback: false,
  };
}