Markdown Style Guide
이 블로그에서 사용할 수 있는 마크다운 문법을 정리합니다.
Headings
H1
H2
H3
H4
Text Formatting
Bold text and italic text and strikethrough.
Blockquote - 인용문은 이렇게 표현합니다.
Code
Inline code looks like this.
// TypeScript code block
interface Post {
title: string;
description: string;
pubDate: Date;
}
const greeting: string = "Hello, World!";
console.log(greeting);
Lists
- Unordered list item
- Another item
- Nested item
- Ordered list item
- Second item
- Third item
Tables
| Feature | Status |
|---|---|
| Dark Mode | Done |
| Blog | Done |
| Resume | Done |
Links and Images
This style guide is kept as a reference for writing blog posts.