Home Blog
Github Logo LinkedIn Logo
← Back

Test Post

This is a testing post to test all markdown features.

Heading Level 2

Welcome to the Markdown Showcase! This document demonstrates almost every feature of Markdown supported in most environments.
Feel free to copy and experiment.


Table of Contents

  1. Headings
  2. Text Styles
  3. Blockquotes
  4. Lists
  5. Links and Images
  6. Code
  7. Tables
  8. Horizontal Rules
  9. Task Lists
  10. Embedded HTML
  11. Footnotes
  12. Math
  13. Miscellaneous

Headings

H1

H2

H3

H4

H5
H6

Text Styles

Regular text, bold text, italic text, bold and italic, strikethrough, underlined1, inline code, and colored text (HTML).

Superscript: 2^10^
Subscript: H2O


Blockquotes

This is a blockquote!

Nested blockquote.

Tip: Blockquotes can include formatting.

  • List item inside blockquote

Lists

Unordered List

  • Item 1
    • Nested Item 1a
      • Nested Item 1ai
  • Item 2

Ordered List

  1. First
  2. Second
    1. Subsecond
    2. Subsecond2
  3. Third

Standard Link

Reference-style link

Alt text for an image

Reference-style image


Code

Inline code: console.log('Hello World!')

Code block examples

Fenced code block (with language):

// JavaScript code
function greet(name) {
  return `Hello, ${name}!`;
}
console.log(greet("Markdown"));

Indented code block:

A Python comment

print(“Indented code block”)


Tables

SyntaxDescriptionExample
HeaderTitleCell
ItalicBoldCode
Left-alignedCenteredRight-aligned
:-----------:--------:---------:
foobarbaz
bazfoobar

Horizontal Rules



Task Lists

  • Completed Task
  • Incomplete Task
    • Subtask 1
    • Subtask 2

Embedded HTML

This is a custom HTML block!

Footnotes

Here is a sentence with a footnote.2


Math

Inline math: $E = mc^2$


Miscellaneous

Emoji: 😃 :sparkles: :tada:

Abbreviation:
HTML is the standard markup language.
*[HTML]: Hyper Text Markup Language

Escape Markdown: *this text is not italic*


Thanks for reading!

Footnotes

  1. Underline is only via HTML.

  2. This is the footnote itself.