Markdown Preview

Write Markdown on the left, see it rendered on the right.

173 words1074 characters

Editor

Preview

Markdown Preview

Getting Started

Welcome to the Markdown Preview tool! Type on the left and see the rendered output on the right.


Text Formatting

This is bold text and this is italic text. You can also use strikethrough and inline code.

Combine them: bold and italic, bold with code inside.


Lists

Unordered List

  • First item
  • Second item
  • Nested item
  • Third item

Ordered List

  1. Step one
  2. Step two
  3. Step three

Links & Images

Visit GitHub

Placeholder Image


Blockquotes

"The best way to predict the future is to invent it."


— Alan Kay


Code Blocks

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

greet("World");
python
def fibonacci(n):
    a, b = 0, 1
    for _ in range(n):
        yield a
        a, b = b, a + b

Horizontal Rules

Use three dashes to create a horizontal rule:


That's it! Start editing to see your Markdown rendered in real time.