What Markdown Is and Why It Won
Text Basics: Headings, Emphasis, Lists
Links, Images, Code and Tables
A Practical Writing Workflow
Frequently Asked Questions
How do I make text bold in Markdown?
Wrap the text in double asterisks or double underscores, so **bold** or __bold__ both render as bold. A single pair of either symbol produces italic text instead.
What is GitHub Flavored Markdown?
It is a popular dialect that extends the original spec with tables, task lists, strikethrough, and fenced code blocks. If formatting works on GitHub but not elsewhere, a flavor difference is usually why.
How do I add a code block in Markdown?
Fence the lines between two rows of three backticks. You can name the language right after the opening fence, like js, to enable syntax highlighting on supported platforms.
Can I convert between HTML and Markdown?
Yes. An HTML to Markdown converter translates in both directions, which is useful when moving content between a CMS that uses HTML and a platform that expects Markdown, avoiding manual retagging.