Markdown Style Guide

Markdown Style Guide

This post showcases how common Markdown elements render in this blog.

Blockquote

This is a blockquote. Use it for pull quotes or callouts.

Emphasis

This sentence has italic emphasis and strong emphasis.

Bulleted List

  • First bullet item
  • Second bullet item
  • Third bullet item

Numbered List

  1. First numbered item
  2. Second numbered item
  3. Third numbered item

Inline Code

Use const for constants and let for variables.

Code Block

type User = {
  id: string
  name: string
}
 
export const greet = (user: User) => {
  return `Hello, ${user.name}`
}

Image

Desk setup