Free2BoxFree2Box

Markdown 미리보기

실시간으로 Markdown을 미리보고 편집합니다

편집기
여기에 Markdown을 작성하거나 붙여넣으세요
미리보기
렌더링된 Markdown 출력
입력하면 미리보기가 여기에 표시됩니다

사용 방법

1

텍스트 붙여넣기 또는 입력

입력 영역에 텍스트, 코드 또는 데이터를 입력하세요.

2

옵션 선택

적용할 변환이나 포맷을 선택하세요.

3

결과 복사

한 번의 클릭으로 출력을 클립보드에 복사하세요.

이 도구를 사용하는 이유

100% 무료

숨겨진 비용도, 프리미엄 등급도 없습니다 — 모든 기능이 무료입니다.

설치 불필요

브라우저에서 완전히 실행됩니다. 소프트웨어를 다운로드하거나 설치할 필요가 없습니다.

프라이빗 & 안전

데이터가 기기 밖으로 나가지 않습니다. 어떤 서버에도 업로드되지 않습니다.

모바일 지원

완전 반응형 — 스마트폰, 태블릿, 데스크톱에서 사용할 수 있습니다.

Markdown Preview: Write and Preview Formatted Text in Real Time

Key Points

  • Markdown uses simple symbols (# for headings, ** for bold) to format text without a word processor
  • Standard format for GitHub READMEs, documentation, blogs, and technical writing
  • Live preview shows formatted output as you type, catching errors immediately

Markdown is a lightweight markup language that converts plain text into formatted HTML. Used by GitHub, Stack Overflow, Reddit, and countless documentation platforms, Markdown lets you create headings, lists, links, code blocks, and tables with simple, readable syntax. A live preview tool lets you see the formatted result as you type.

#1

Most popular documentation format

Markdown Essentials

1

Headings & Structure

Use # for h1, ## for h2, through ###### for h6. Headings create document structure and are essential for readability and accessibility in long documents.

2

Text Formatting

**bold**, *italic*, ~~strikethrough~~, and `inline code` are the basic formatting options. Combine them for emphasis: ***bold italic*** uses three asterisks.

3

Code Blocks & Syntax Highlighting

Triple backticks create fenced code blocks. Specify the language after the opening backticks for syntax highlighting: ```javascript for colored JS code.

4

Tables & Lists

Pipe characters (|) create tables, dashes (-) separate headers from rows. Unordered lists use -, *, or +. Ordered lists use numbers (1., 2., 3.).

Markdown Tips

Use blank lines between paragraphs—single line breaks are ignored in standard Markdown.

Reference-style links [text][id] keep your source readable when you have many URLs in a document.

Preview your Markdown before committing to GitHub—formatting differences between parsers can cause surprises.

Use HTML within Markdown for advanced layouts (like centered text or colored text) when standard syntax falls short.

Markdown rendering happens entirely in your browser. No content is transmitted to any server.

자주 묻는 질문