Markdown

Preview markdown

Markdown Preview

This is a live preview of your markdown.

Features

  • Bold and italic text
  • Strikethrough text
  • Links
  • inline code
  • Code Blocks

    const greeting = "Hello, World!";
    

    console.log(greeting);

    Blockquotes are supported too!

  • Ordered lists
  • Work as well
  • Like this
  • Enjoy writing!

    Frequently Asked Questions

    What is Markdown?
    Markdown is a lightweight markup language that uses plain text formatting syntax. It converts to HTML and is widely used for documentation, README files, and content writing.
    What are common Markdown syntax elements?
    Common elements: # for headings, ** for bold, * for italic, - for lists, [text](url) for links, ![alt](url) for images, ``` for code blocks, and > for quotes.
    What is the difference between Markdown flavors?
    Different flavors (GitHub, CommonMark, etc.) have slight syntax variations. GitHub Markdown adds tables, task lists, and strikethrough. CommonMark is a standardized specification.