Flameater

Learn computer programming, for beginners and non-programmers


Markdown Cheatsheet

From https://www.wpbeginner.com/plugins/what-is-markdown-how-to-use-markdown-in-wordpress/

Markdown Syntax Cheat Sheet

Markdown syntax is very simple, but it may take some time to get used to of it. Here is a quick Markdown cheat sheet that you can use as a reference.

Input:
*This is emphasized Text*

Output:
This is emphasized Text

Input:
**This is bold text**

Output:
This is bold text

Input:
#This is Heading 1#

Output:

This is heading 1

Input:
##This is Heading 2##

Output:

This is heading 2

Input:
###This is Heading 3###

Output:

This is heading 3

Input:
[WPBeginner](https://www.wpbeginner.com)

Output
WPBeginner

Input
1. Ordered list item 1
2. Ordered list item 2
3. Ordered list item 3

Output

  1. Ordered list item 1
  2. Ordered list item 2
  3. Ordered list item 3

Input
*Unordered list item 1
*Unordered list item 2
*Unordered list item 3

Output

  • Unordered list item 1
  • Unordered list item 2
  • Unordered list item 3


Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.