Skip to main content

Werner Strydom

Test: All Markdown Features

This test fixture exercises all markdown features to ensure styling is consistent.

Text Formatting

This paragraph contains bold text, italic text, bold and italic, inline code, strikethrough text, and a link to nowhere.

You can also use bold and italic with underscores.

Lists

Unordered Lists

Ordered Lists

  1. First ordered item
  2. Second ordered item
    1. Nested ordered item
    2. Another nested item
  3. Back to first level

Mixed Lists

  1. Ordered item
    • Unordered nested
    • Another unordered
  2. Another ordered
    1. Nested ordered
    2. More nested

Code Blocks

With Syntax Highlighting

package main

import "fmt"

func main() {
    fmt.Println("Hello, World!")
    x := 42
    if x > 0 {
        fmt.Println("Positive")
    }
}
def fibonacci(n):
    """Calculate Fibonacci number"""
    if n <= 1:
        return n
    return fibonacci(n-1) + fibonacci(n-2)

result = fibonacci(10)
print(f"Result: {result}")
#!/bin/bash
# Test script
for i in {1..5}; do
    echo "Iteration $i"
    sleep 1
done

Plain Code Block

No syntax highlighting
Just plain monospace text
Preserves    spacing

Blockquotes

This is a blockquote. It can span multiple lines.

It can also contain formatting and code.

Nested blockquotes:

This is nested

This is more nested

Tables

Simple Table

Column 1 Column 2 Column 3
Data A1 Data B1 Data C1
Data A2 Data B2 Data C2
Data A3 Data B3 Data C3

Table with Alignment

Left Aligned Center Aligned Right Aligned
Left Center Right
Lorem Ipsum Dolor
Sit Amet 123.45

Complex Table with Formatting

Feature Support Notes
Bold Full support
Italic inline code works
Strike Links work too

Horizontal Rules




Images

Alt text for image

Definition Lists (if supported)

Term 1
Definition 1
Term 2
Definition 2a
Definition 2b

Task Lists (if supported)

Footnotes (if supported)

This sentence has a footnote1.

This one has another footnote2.

Inline HTML (if supported)

Ctrl + C

Highlighted text

This is hidden content that can be revealed.

It can contain markdown too!

Special Characters

Emoji (if supported)

:smile: :heart: :thumbsup: :rocket:

Escaping Special Characters

*Not italic* [Not a link] `Not code`

Long Line Test

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.

Nested Combinations

  1. Bold item with italic text and code

  2. Blockquote in list Second line

  3. Code block in list
    Line 2
    
    • Nested unordered list
    • With multiple items
    • And some formatting

Conclusion

This document tests all markdown features to ensure consistent styling across the site.


  1. This is the first footnote. ↩︎

  2. This is a named footnote with formatting and code↩︎