Skip to content

Lorem Ipsum Markdown Extravaganza

Aug 25, 2024

markdown styling web-design

Welcome to the ultimate Markdown syntax showcase! This post is designed to help you test and style various Markdown elements in your Astro blog.

Basic Typography

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam euismod, neque vel tincidunt faucibus, lacus augue bibendum nunc, nec aliquet nunc nunc nec velit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Headings

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Lists

Unordered List

Ordered List

  1. First item
  2. Second item
  3. Third item
    1. Subitem 3.1
    2. Subitem 3.2
  4. Fourth item

Blockquotes

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam euismod, neque vel tincidunt faucibus, lacus augue bibendum nunc, nec aliquet nunc nunc nec velit.

Nested blockquote: Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Code Blocks

Inline code: const greeting = "Hello, World!";

function fibonacci(n) {
if (n <= 1) return n;
return fibonacci(n - 1) + fibonacci(n - 2);
}
console.log(fibonacci(10));

Tables

Header 1Header 2Header 3
Row 1, Col 1Row 1, Col 2Row 1, Col 3
Row 2, Col 1Row 2, Col 2Row 2, Col 3
Row 3, Col 1Row 3, Col 2Row 3, Col 3

Horizontal Rule


Visit Astro’s Website

Images

Blank Image

Task Lists

Footnotes

Here’s a sentence with a footnote. 1

Definition Lists

Term 1 : Definition 1

Term 2 : Definition 2a : Definition 2b

Strikethrough

This text is strikethrough

Highlighting

==This text is highlighted==

Subscript and Superscript

H2O is a liquid. 2^10^ is 1024.

Emoji

:smile: :heart: :rocket:

Mathematical Formulas

When $a \ne 0$, there are two solutions to $(ax^2 + bx + c = 0)$ and they are $$ x = {-b \pm \sqrt{b^2-4ac} \over 2a} $$

This Markdown-rich post should provide ample opportunity to test and style various elements in your Astro blog. Happy styling!

Footnotes

  1. This is the footnote.