Hello World

A demo blog

Table of contents

  1. Hello World
    1. Heading 2
      1. Heading 2
    2. This is a list

Hello World

A doc to demonstrate basic Markdown page

interface HelloWorldType {
  title: string;
}
function printHelloWorld(props: HelloWorldType) {
  console.log("Hello World");
  return (
    <Head>
      <title>{props.title}</title>
    </Head>
  );
}

Here's a simple footnote,1 and here's a longer one.2

Test Image

Below is a random quote

To be or not to be

First Term : This is the definition of the first term.

Second Term : This is one definition of the second term. : This is another definition of the second term.

I need to highlight these ==very important words==. H2O X^2^

  • Write the press release
  • Update the website
  • Contact the media

Below is a table

BeforeAfter
❎⚠️OFF✅ON

Heading 2

Heading 2

Heading 4 (enough already)

This is a list

  • Item 1
    • Item 1.1
  • Item 2
    • Item 2.1
    • Item 2.2

Bold

Italic

Strike through

Google.com

Footnotes

  1. This is the first footnote.

  2. Here's one with multiple paragraphs and code.

    Indent paragraphs to include them in the footnote.

    { my code }

    Add as many paragraphs as you like.

,