This file demonstrates various Markdown features and syntax.
Here's a sentence with a footnote1.
And another footnote2 in the text.
Header 1 | Header 2 | Header 3 |
---|---|---|
Cell 1 | Cell 2 | Cell 3 |
Row 2 | Data | More |
Aligned Table:
Left | Center | Right |
---|---|---|
Left | Center | Right |
aligned | aligned | aligned |
External Link Internal Link Link with Title
Unordered List:
- Item 1
- Item 2
- Nested Item 2.1
- Nested Item 2.2
- Item 3
Ordered List:
- First Item
- Second Item
- Nested Item 2.1
- Nested Item 2.2
- Third Item
This is a blockquote It can span multiple lines
It can have multiple paragraphs
And nested blockquotes
Inline code: const example = "hello world";
Code block:
function greeting(name) {
return Hello, ${name}!;
}
This text is struck through
😄 ❤️ 👍
Inline equation:
Block equation:
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
Note
Highlights information that users should take into account, even when skimming.
Tip
Optional information to help a user be more successful.
Important
Crucial information necessary for users to succeed.
Warning
Critical content demanding immediate user attention due to potential risks.
Caution
Negative potential consequences of an action.
var i;
var fib = [0, 1]; // Initialize array!
for (i = 2; i <= 10; i++) {
// Next fibonacci number = previous + one before previous
// Translated to JavaScript:
fib[i] = fib[i - 2] + fib[i - 1];
console.log(fib[i]);
}