205 wordsΒ·55 linesΒ·1211 charsΒ·~2 min read
Markdown
Preview

Welcome to Markdown Preview

A fast, live Markdown editor right in your browser. No data is sent to any server.


Features

  • βœ… Live preview as you type
  • βœ… GitHub-Flavoured Markdown (GFM)
  • βœ… Syntax-highlighted code blocks
  • βœ… Tables, task lists, blockquotes
  • βœ… Export as HTML

Code Example

// Fibonacci with memoization
function fib(n, memo = {}) {
  if (n in memo) return memo[n];
  if (n <= 1) return n;
  return memo[n] = fib(n - 1, memo) + fib(n - 2, memo);
}

console.log(fib(40)); // 102334155

Table

MethodURLStatus
GET/api/users200 OK
POST/api/users201 Created
DELETE/api/users/:id204 No Content

Task List

  • Install Node.js
  • Create Angular project
  • Deploy to production
  • Add unit tests

Blockquote

"Any fool can write code that a computer can understand. Good programmers write code that humans can understand." β€” Martin Fowler

Inline Formatting

This is bold, this is italic, this is strikethrough, and this is inline code.

Visit Altairys Tools for more free developer tools.