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
  1. Ordered list item
  2. Second item
  3. Third item

Tables

FeatureStatus
Dark ModeDone
BlogDone
ResumeDone

Link text


This style guide is kept as a reference for writing blog posts.