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.
Link and List
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