Markdown is a lightweight markup language that you can use to add formatting to plaintext text documents. Markdown is one of the most popular markup languages.
Markdown files (files with a .md extension) such as this README file
are automatically rendered by GitHub.
-
To render text in bold, surround it with
**or__.
Example:**this is important**---> this is important -
To render text in italic, surround it with
_or*.
Example:this is *really great*---> this is really great
To create a title in markdown, add one (or more) # signs at the start
of the line:
#= level 1 title (largest font).##= level 2 title.###= level 3 title.####= level 4 title.#####= level 5 title.######= level 6 title (smallest font).
Examples:
Bulleted lists are created by adding a - or * in front
of a line. For instance:
- Item 1 (or * Item 1)
- Item 2 (or * Item 2)
- ...
will render as:
- Item 1
- Item 2
- ...
- To render text as
inline code, surround it with single backticks `. - To render text as a code block, use triple backticks ```