arrow_back Back to all posts

Markdown Full Test

A beatiful desert arch in Arches National Park

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

  1. First item
  2. Second item
    1. Nested item 2.1
    2. Nested item 2.2
  3. 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 1Header 2Header 3
LeftCenterRight
CellCellCell
CellCellCell

Horizontal Rules


Link to example website

Alt text for image

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: E=mc2E=mc^2 is the famous equation by Einstein.

Block math:

ddx(ex)=ex\frac{d}{dx}(e^x) = e^x

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

  1. This is the footnote content.