Markdown Features Demo

This note demonstrates all supported Markdown features.

Text Formatting

Regular text, bold, italic, strikethrough, and inline code.

Links

External links work as expected. Internal links to other notes work too.

Code Blocks

function greet(name) {
  return `Hello, ${name}!`;
}
def fibonacci(n):
    a, b = 0, 1
    for _ in range(n):
        a, b = b, a + b
    return a

Blockquotes

Design is not just what it looks like and feels like. Design is how it works. — Steve Jobs

Lists

  • First item
  • Second item
    • Nested item
  • Third item
  1. Ordered first
  2. Ordered second
  3. Ordered third

Tables

Method Time Complexity Space
Binary Search O(log n) O(1)
Linear Search O(n) O(1)
Hash Lookup O(1) avg O(n)

Task Lists

  • [x] Set up Eleventy
  • [x] Design CSS theme
  • [ ] Write more notes