Vending Mocha

Markdown Features Demo 📝

January 02, 2024

Markdown Features

Vending Mocha isn't just about text; it supports a wide range of Markdown features to help you write rich content.

Typography

You can use bold, italics, and strikethrough text.

"Blockquotes are great for emphasizing important information or quoting sources."

Lists

Unordered List

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

Ordered List

  1. First step
  2. Second step
  3. Third step

Code Blocks

You can write code blocks with syntax highlighting!

interface User {
  id: number;
  name: string;
  role: 'admin' | 'user';
}

const getUser = (id: number): User => {
  return {
    id,
    name: 'Jane Doe',
    role: 'admin'
  };
};

Links and Images

You can link to Google or internal pages.

Vending Mocha

Happy writing! ✍️