CalKit

Markdown Preview

Check markdown text statistics.

문자 수
52

텍스트 통계

문자 수52자
단어 수15개
줄 수8줄
바이트 크기96 bytes

마크다운 요소 분석

제목 (#)1개
굵은 글씨 (**)1개
기울임 (*)1개
인라인 코드 (`)1개
목록 항목 (-)2개

원문 미리보기

# 제목 **굵은 글씨**와 *기울임 글씨* `코드` - 목록 항목 1 - 목록 항목 2

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>, ![alt](src) → <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

  1. 1Enter Markdown text in the left editing area.
  2. 2View the rendered preview in real time on the right.
  3. 3Check character count, word count, line count, and estimated reading time at the top.
  4. 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