Think you might be in the wrong place? Go home!
What is Markdown?
Markdown is a simple markup language that enables you to incorporate formatting elements into plain text documents.
Why do we use Markdown?
- Markdown can be used to create websites, documents, notes, books, presentations, email messages, and technical documentation.
- Markdown is portable.
- You can create Markdown-formatted text on any device running any operating system.
- Even if the application you’re using stops working at some point in the future, you’ll still be able to read your Markdown-formatted text using a text editing application.
- Lots of famous websites use it
What symbol will create a heading in Markdown?
”#”
How many do you need to create the largest heading?
”#”
How many do you need to create the smallest heading?
”####”
When making text bold or italicized for emphasis, it is best practice to use which symbol?
- Bold
->”**Text here**” or “__Text here__”
- Italic
->”*Text here*” or “_Text here_”
How do you create a link with Markdown?
You can create an inline link by wrapping link text in brackets [ ], and then wrapping the URL in parentheses ( ).
What are the three symbols you can use to create an unordered (bulleted) list with Markdown?
You can make an unordered list by preceding one or more lines of text with -, *, or +.