← Back to all posts

Markdown Syntax Guide

Admin2026-01-03
markdownguideformatting

This post demonstrates various Markdown features.

Text Formatting

  • Bold text using double asterisks
  • Italic text using single asterisks
  • Bold and italic using triple asterisks
  • Strikethrough using double tildes

Lists

Unordered Lists

  • Item 1
  • Item 2
    • Nested item 2.1
    • Nested item 2.2
  • Item 3

Ordered Lists

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

Code Blocks

Inline Code

Use console.log() for debugging.

JavaScript

const greeting = "Hello, World!";
console.log(greeting);

Python

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

Bash

echo "Hello, World!"
ls -la
cd /home/user

Quotes

This is a blockquote. It can span multiple lines.

Links

Visit Next.js

Summary

Markdown is a simple yet powerful markup language!