Pré-visualização de Markdown
Pré-visualize e edite Markdown em tempo real
Proximos passos sugeridos
Ferramentas Relacionadas
Ferramentas de Imagem
Comprima, redimensione, recorte, gire e converta imagens
Imagem para Base64
Converta imagens para URIs de dados Base64
Visualizador e Editor CSV
Visualizar, editar, ordenar e exportar arquivos CSV
Contador de Palavras
Contar palavras, caracteres, frases e estimar tempo de leitura
Gerador Lorem Ipsum
Gerar texto de preenchimento para design e desenvolvimento
Comparação de Texto
Compare diferenças entre dois textos
Como Usar
Cole ou Digite
Insira seu texto, código ou dados na área de entrada.
Escolha as Opções
Selecione a transformação ou formato que deseja aplicar.
Copie o Resultado
Copie a saída para sua área de transferência com um clique.
Por Que Usar Esta Ferramenta
100% Gratuito
Sem custos ocultos, sem planos premium — todos os recursos são gratuitos.
Sem Instalação
Funciona inteiramente no seu navegador. Nenhum software para baixar ou instalar.
Privado e Seguro
Seus dados nunca saem do seu dispositivo. Nada é enviado a nenhum servidor.
Funciona no Celular
Totalmente responsivo — use no seu celular, tablet ou desktop.
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
Headings & Structure
Use # for h1, ## for h2, through ###### for h6. Headings create document structure and are essential for readability and accessibility in long documents.
Text Formatting
**bold**, *italic*, ~~strikethrough~~, and `inline code` are the basic formatting options. Combine them for emphasis: ***bold italic*** uses three asterisks.
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.
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.