Skip to content

Markdown Basics Part 02

πŸ“… Created: 05‑07‑2025
πŸ› οΈ Last updated: 07‑07‑2025
πŸ”– Version: v1.0.1


Overview

In Basics Part 01, we have walked through the basic Markdown elements, now let's take a look at other Markdown elements such as Lists (Unorderd and Ordered Lists), Link, Blockquote and Code block.


Below is a quick reference table so you can immediately see the Markdown syntax (code snippet) side‑by‑side with the rendered result.

Purpose Markdown syntax (code) Rendered
Unordered List - Item - Item
Ordered List 1. Item 1. Item
Link [OpenAI](...) OpenAI

Blockquote

Markdown

> Quoted text

Rendered output

Quoted text

Code block

Markdown

````
python
def hello():
    print("Hello, Markdown!")
````

Rendered output

def hello():
    print("Hello, Markdown!")

πŸ“œ Changelog

  • 07-07-2025: Minor formatting fixes.

  • 05‑07‑2025: First draft completed