Markdown Preview
Check markdown text statistics.
텍스트 통계
마크다운 요소 분석
원문 미리보기
Overview
Preview Markdown text in real time and view statistics (character count, word count, line count, reading time). Useful for writing blog posts, editing READMEs, and creating documentation.
Formula
Markdown conversion process: The parser analyzes Markdown text into tokens (heading, paragraph, list, code, link, etc.) and converts each token to its corresponding HTML tag. Key conversions: # → <h1>, ** → <strong>, * → <em>, [text](url) → <a>,  → <img>, ``` → <pre><code>. Statistics: character count = non-whitespace characters, word count = split by whitespace, reading time = word count / 200 (words per minute).
How to Use
- 1Enter Markdown text in the left editing area.
- 2View the rendered preview in real time on the right.
- 3Check character count, word count, line count, and estimated reading time at the top.
- 4Copy the finished Markdown for use.
Tips
- ✔Headings support 6 levels from # to ######.
- ✔Wrap code blocks with triple backticks (```) and specify the language for syntax highlighting.
- ✔Tables are created with pipes (|) and hyphens (-).
- ✔Strikethrough uses ~~text~~; checkboxes use - [ ] or - [x].
- ✔GitHub Flavored Markdown (GFM) extends standard Markdown with tables, checkboxes, auto-linking, and more.
FAQ
Q. What is Markdown?
Markdown is a lightweight markup language created by John Gruber in 2004. It allows formatting plain text and easily converts to HTML. It is widely used on GitHub, Stack Overflow, blogging platforms, and more.
Q. Where can I find Markdown syntax references?
CommonMark (https://commonmark.org) is the standard Markdown specification, and GitHub Flavored Markdown (GFM) is the most widely used extension. Basic syntax includes headings (#), emphasis (** bold, * italic), links, images, lists, and code blocks.
Q. Can Markdown and HTML be used together?
Yes, you can write HTML tags directly within Markdown. HTML can supplement layouts that are difficult to express in Markdown (e.g., <details>, <summary>). However, some platforms restrict HTML tags for security reasons.
Related Calculators
Color Converter
Convert between HEX, RGB, and HSL color codes.
Unix Timestamp Converter
Convert between Unix timestamps and dates/times.
Base64 Encoder/Decoder
Encode and decode text in Base64 format.
JSON Formatter
Format or minify JSON data for readability.
URL Encoder/Decoder
Encode and decode URL strings.
Hash Generator
Generate MD5, SHA-1, SHA-256 hash values.