Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents.
You can create headers using the # symbol:
# Header 1
## Header 2
### Header 3
You can make text italic using *asterisks* or _underscores_.
You can make text bold using **double asterisks** or __double underscores__.
Unordered lists use asterisks, pluses, or hyphens:
Ordered lists use numbers:
You can create links using [text](URL).
Inline code uses backticks: code
Code blocks use triple backticks:
function example() {
console.log("Hello, world!");
}
This is a blockquote. You can use the > symbol to create one.
Header 1 | Header 2 |
---|---|
Cell 1 | Cell 2 |
Cell 3 | Cell 4 |