Testing Markdown Blog

This post demonstrates the rendering capabilities of the new blog system. It includes examples of all standard Markdown features to ensure they are styled correctly with the Midnight theme.

Typography

Text formats: Bold, Italic, Bold Italic, and ~~Strikethrough~~.

This is a blockquote. It should stand out from the rest of the text, perhaps with a border or a different background color.

It can also have multiple paragraphs.

Lists

Unordered List

  • Item 1

  • Item 2

    • Nested Item 2.1

    • Nested Item 2.2

  • Item 3

Ordered List

  1. First Step

  2. Second Step

  3. Third Step

Code Blocks

Here is an example of inline code within a sentence.

JavaScript

function helloWorld() {
    console.log("Hello, World!");
    const x = 42;
    return x * 2;
}

Python

def fibonacci(n):
    if n <= 1:
        return n
    else:
        return fibonacci(n-1) + fibonacci(n-2)

Tables

Tables are not natively supported in standard Verso Markdown yet.

Links and Images

This is a link to the homepage.

Profile Picture Caption: The standard profile picture.

---

Math (LaTeX)

Currently equations are typed as text in this test:

E = mc^2