• Home
  • Daily News
  • Parenting
  • Education
  • Nutrition
  • Adult Tech
  • Nature
©2023 - The Better Parent. All Right Reserved. Designed & Developed by Theory Solutions

The Printable Markdown Cheat Sheet for Beginners and Experts

by Joel Lee July 18, 2018
July 18, 2018 398 views
learn-markdown

Markdown is an easy-to-learn markup language that’s used to format plain text documents. Even if you have no previous experience with it, Markdown is so simple that it can be learned in under 10 minutes.

Unlock the “Markdown Cheat Sheet” now!

This will sign you up to our newsletter

Enter your Email
Read our privacy policy

For example, if you want to make a word appear italicized, just surround it with asterisks (e.g. *test* becomes test). This also works for entire sentences or even paragraphs. If you want to make a bulleted list, just start each line with a hyphen character. Simple, right?

There are all kinds of Markdown editor apps out there, and you can even use Markdown in Microsoft Word. If you’re still a bit confused, check out our beginner’s introduction to Markdown. Otherwise, refer to the Markdown cheat sheet below for a quick overview of what you can do with it.

The Markdown Cheat Sheet

Format TypeMarkdown Syntax
Basic Elements
H1 to H6
Headings
# Heading Text
## Heading Text
### Heading Text
#### Heading Text
##### Heading Text
###### Heading Text
Italics*This text is italicized*
Bold**This text is bold**
Blockquote> Blockquote paragraphs must have
> a right-arrow bracket at the start
> of every single line.
>
> Use a blank line for multiple paragraphs.
Unordered List- Bullet list item
- Bullet list item
- Bullet list item
  - Use a two-space indent for nested lists
Ordered List1. Bullet list item
2. Bullet list item
3. Bullet list item
  1. Ordered lists can also be nested
Mixed List1. Can you mix list types?
  - Yes, you can!
Horizontal Line---
***
___

Note: Either three hyphens, asterisks, or underscores.

HyperlinkThis is an [example link](//www.makeuseof.com)
Image![Alt Text](http://example.com/image/path.png)
Ignore MarkdownPrefix Markdown characters with *backslashes* to ignore formatting.
 
Extended Elements
Code (Inline)`This is inline code`
Code (Block)```
This is a block of code
It supports multiple lines
```
Strikethrough~~This text is crossed out~~
Hard Line BreakThis is some text
This text is a new line, not a new paragraph
Table
| First Header | Second Header |
| ------------ | ------------- |
| Content cell 1 | Content cell 2 |
| Content column 1 | Content column 2 |

Note: Preceding blank line is necessary.

Task Lists- [x] Completed task item
- [ ] Unfinished task item
- [ ] (Optional) Mark parentheses to be ignored
MentionYou can mention @users and @teams on GitHub. Mainly useful when submitting or commenting on bugs and issues.
Emoji:emojicode:

Note: Emoji codes can be found in the emoji cheat sheet.

Note: Nearly all flavors of Markdown support the basic elements, but the extended elements are only supported by more advanced forms of Markdown, including CommonMark and GitHub Flavored Markdown.

What Are Markdown Flavors?

The original Markdown specification came about in 2004. However, as innovative as it was, many users felt that the original Markdown’s feature set was too limited for anything more than simple document formatting.

As various sites adopted Markdown as their preferred method for inputting text (e.g. blog posts, comments, forum posts, etc.), they began adding and supporting their own elements of Markdown markup. Notable sites include Reddit, GitHub, Stack Exchange, and more.

Eventually, users began pushing for a standardized set of formatting elements, leading to the creation of even more Markdown flavors like CommonMark, MultiMarkdown, Markdown Extra, GitHub Flavored Markdown, and more.

Long story short: Once you learn the basic elements set forth by the original Markdown specification, you’ll be able to pick up any other flavor of Markdown with ease. The variations are subtle and often only useful in very specific use-cases.

Read the full article: The Printable Markdown Cheat Sheet for Beginners and Experts

Source: makeuseof.com

Cheat SheetMarkdownProgramming
0 FacebookTwitterPinterestEmail
previous post
Dementia could be detected via routinely collected data
next post
Water may be key to understanding sweetness

Related Posts

New Features Worth Checking Out in Flutter 3.7

February 8, 2023

How to Compress and Decompress Files in Golang

February 8, 2023

Adding Sound Effects and Music in Pygame

February 7, 2023

Build a Color Palette Using Python

February 7, 2023

How to Add a Color Picker to Your...

February 7, 2023

70+ Excel Keyboard Shortcuts for Windows

February 5, 2023

Trending

  • 3 Ways to Edit the boot/config.txt File on Raspberry Pi

    August 30, 2018
  • 6 Tools to Sync Microsoft Outlook With Google Calendar

    January 7, 2019
  • How to Vectorize an Image in Adobe Illustrator

    March 29, 2019
  • What Does This Emoji Mean? Emoji Face Meanings Explained

    May 24, 2019
  • The 7 Best DIY Security Camera Apps and Software for Linux

    May 31, 2019

©2023 - The Better Parent. All Right Reserved. Designed & Developed by Theory Solutions

Related Articlesx

How to Use TypeScript in React Applications

8 Signs You Aren’t Meant to Be...

What Is AppleScript? Writing Your First Mac...