Hello, World!

Hello, World! 🌍

Welcome to this Hello, World! sample markdown file.
This file demonstrates various markdown features:


1. Text Formatting


2. Lists

Unordered list

Ordered list

  1. First item
  2. Second item
  3. Third item
    1. Indented item
    2. Indented item
  4. Fourth item

A link to Markdown Guide.

Sample Image


4. Blockquote

The quarterly results look great!

Everything is going according to plan.


Dorothy followed her through many of the beautiful rooms in her castle.

The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood


5. Code Blocks

Code Block (JavaScript)

console.log("Hello, World!");

Code Block (GML)

show_message("Hello, World!");

6. Tables

Language Syntax
JavaScript console.log()
Python print()
C printf()
Syntax Description Test Text
Header Title Here’s this
Paragraph Text And more

7. Task List


8. Horizontal Rule


9. Headings

Heading Level 3

Heading Level 4

Heading Level 5
Heading Level 6

10. Paragraph

I really like using Markdown.

I think I’ll use it to format all of my documents from now on.

This is the first line.
And this is the second line.

11. Definition List

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.

12. 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.