1001Ferramentas
📝 Dev

Markdown Cheatsheet

Quick reference for Markdown syntax, filterable by keyword: headings, lists, links, tables, code and more. Shows the raw syntax next to what it does.

The Markdown syntax nobody memorizes completely

You are halfway through a README, you need a table, and you freeze. Was it pipes with colons? How many dashes in the separator row? Markdown is simple enough that nobody ever bothers to learn all of it, and the parts you touch once a month, like footnotes, checklists and escaping an asterisk, are exactly the ones that vanish when you need them.

The page lists twenty constructs, each with the literal snippet on one side and a short label for what it does on the other. The search box filters both sides at once, so typing table finds it by label and typing a backtick finds it by symbol. One honest caveat: despite what the tool description suggests, there is no rendered preview here. You get raw syntax and a label, not the formatted result.

Much of the list is GitHub Flavored Markdown rather than plain CommonMark. Strikethrough, checklists, tables and footnotes work on GitHub, GitLab and Obsidian, but an older parser or a restricted comment box may print them as literal text. When the destination is unfamiliar, test one item before rewriting a whole document. The list is static and lives entirely in the browser; the filter queries nothing.

Frequently asked questions

Does it preview rendered Markdown?
No. It shows the syntax next to a short description of what it does, without rendering anything. To see the final HTML, paste your text into GitHub itself or an editor with a preview pane.
How do I break a line without starting a new paragraph?
End the line with two trailing spaces, or put a br tag at the end. A plain Enter is usually ignored and the parser joins the lines into one paragraph.
Why does my table not show up on my blog?
Tables are a GitHub Flavored Markdown extension. Parsers that follow only the original CommonMark spec ignore them and print the pipes as text. Check which dialect your site generator uses.

Related Tools