A simple example

Gilad Kutiel ︱ 23/10/2024

Explore the essentials of Markdown with examples of headings, lists, links, images, code, and tables. Perfect for a quick refresher or learning the basics!

A simple example

Markdown Syntax Guide

Here is the Markdown source code of this post.

Headings

H1 Heading

H2 Heading

H3 Heading

H4 Heading

Emphasis

Italic
Bold
Bold and Italic

Lists

Unordered List

Ordered List

  1. First item
  2. Second item
  3. Third item

OpenAI

Images

Markdown Logo

Blockquotes

This is a blockquote.

Code

Inline Code

Use print() to output text.

Code Block (Python)

def hello_world():
    print("Hello, World!")

Horizontal Rule


Tables

Syntax Description
Header Title
Paragraph Text

Note

This is a note

Warn

This is a warning

Danger

This is a danger