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
- First numbered item
- Second numbered item
- 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}`
}