Welcome to the Online Markdown Editor

This editor allows you to write and preview Markdown in real-time. Here is a quick guide to Markdown syntax:

Headers

H1 Header

H2 Header

H3 Header

H4 Header

H5 Header
H6 Header

Text Formatting

Bold Text using ** or __ Italic Text using * or _ Bold and Italic using *** or ___ Strikethrough using ~~

Lists

Unordered List

  • Item 1
  • Item 2
    • Subitem 2.1
    • Subitem 2.2
  • Item 3

Ordered List

  1. First Item
  2. Second Item
  3. Third Item

OpenAI Alt Text

Blockquotes

This is a blockquote.

It can span multiple lines.

Code

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

Code block:

function greet(name) {
  console.log(`Hello, ${name}!`);
}
greet('User');

Tables

Syntax Description
Header Title
Paragraph Text

Horizontal Rule


Enjoy writing!