D
/Drafts/
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

Introduction

Welcome to the new post editor. This is a live preview of what you are typing.

Features

  • Markdown support
  • Live preview side-by-side
  • Syntax highlighting for code blocks
  • "Code is like humor. When you have to explain it, it's bad." – Cory House

    Code Example

    
    const greet = (name) => {
      console.log(Hello, ${name}!);
    };