Markdown Full Test

Second Blog Post
Welcome to this comprehensive markdown test post!
Shai is a GOAT 🐐
Regular text with bold text, italic text, bold and italic, and strikethrough.
Lists
Unordered Lists
- Item 1
- Item 2
- Nested item 2.1
- Nested item 2.2
- Item 3
Ordered Lists
- First item
- Second item
- Nested item 2.1
- Nested item 2.2
- Third item
Task Lists
- Completed task
- Incomplete task
- Another completed task
Code
Inline code
example. Example of a fira code ligature: ==>
.
// A simple JavaScript function
function greeting(name) {
return `Hello, ${name}!`;
}
// Using an arrow function
const add = (a, b) => a + b;
// Object with methods
const calculator = {
add: (a, b) => a + b,
subtract: (a, b) => a - b,
multiply: (a, b) => a * b,
divide: (a, b) => (b !== 0 ? a / b : "Cannot divide by zero"),
};
console.log(greeting("World"));
console.log(calculator.add(5, 3));
Blockquotes
This is a blockquote
Nested blockquote
Still in the first blockquote
Tables
Header 1 | Header 2 | Header 3 |
---|---|---|
Left | Center | Right |
Cell | Cell | Cell |
Cell | Cell | Cell |
Horizontal Rules
Links and Images
Here’s a great gif of Cason Wallace dunking on Nikola Jokic.
Here’s an example of what I may do with two images next to one another.
Footnotes
Here’s a sentence with a footnote1.
Definition Lists
Term 1 : Definition 1
Term 2 : Definition 2a : Definition 2b
Math (if supported)
Inline math: is the famous equation by Einstein.
Block math:
Emojis (if supported)
😄 ❤️ :thumbsup:
Abbreviations
_[HTML]: Hyper Text Markup Language _[CSS]: Cascading Style Sheets
The HTML and CSS are web standards.
Highlight (if supported)
==This text is highlighted==
Subscript and Superscript
H2O is a liquid. 2^10^ equals 1024.
H2O is a liquid. 210 equals 1024.
Footnotes
-
This is the footnote content. ↩