← Back to blog

First Post!

19 April 2026 · 1 min read

Test

Markdown Cheat Sheet

Headings

H1

H2

H3

H4


Text Formatting

bold italic strikethrough inline code


Lists

Unordered

  • Item 1
  • Item 2
    • Sub item

Ordered

  1. First
  2. Second
  3. Third

Links

Google


Images

alt text


Code Blocks

public class Hello {
    public static void main(String[] args) {
        System.out.println("Hello World");
    }
}

Blockquotes

This is a quote


Tables

NameAge
John25
Sarah30

Horizontal Line



Task Lists

  • Done task
  • Not done

Escaping Characters

*not italic*


Mixed Example

My Notes

  • Important: Learn Markdown
  • Visit GitHub

Markdown is easy once you use it a bit

print("Hello Markdown")

Comments

No comments yet — be the first!

Leave a comment