Test

January 1, 2026

This is a h1 heading

This is a paragraph in the test markdown file.

This is a h2 heading

Here is a list:

  • Item 1
  • Item 2
  • Item 3
    • Subitem 1
      • Subitem 2
        • Subsubitem 1
      • Subitem 3

Here is a numbered list:

  1. First item
  2. Second item
  3. Third item
    • Subitem 1
      • Subitem 2
        1. Subsubitem 1
      • Subitem 3
  4. Fourth item

another list:

  1. ordered list starting at 14
  2. second item
  3. third item

Task list:

  • Task 1 completed
  • Task 2 not completed
    • Subtask 1 completed
    • Subtask 2 not completed
    • Subtask 3 not a task list item
  • Task 3 not completed

And here is some code:

def hello_world():
	print("Hello, world!")
hello_world()
def fibonacci(n):
	if n <= 0:
		return 0
	elif n == 1:
		return 1
	else:
		return fibonacci(n-1) + fibonacci(n-2)
print(fibonacci(10))

bold italic italic strikethrough

/bolditalicstrikethrough
boldtexttexttext
italictexttexttext
strikethroughtexttexttext

This is a simple blockquote.

Another blockquote.

Nested blockquote.
still nested

Back to first level.

Link without link tag: https://example.com
Link with link tag: Example

Below is a horizontal rule:


Above is a horizontal rule.

Text with a footnote.1 And text with an inline footnote.2

Here we have a formula to calculate :

some inline formulas.

Another footnote test.1 And another one.3

Example inserted text.

Footnotes

  1. This is the footnote text. 2

  2. This is an inline footnote.

  3. This is the second footnote text.