Old File Example - Example Site of dark-theme-editor

Old File Example

Markdown Example

Headings

This is an H1 heading

This is an H2 heading

Emphasis

This is italicized and this is bolded.

Lists

Unordered List

  • Item 1
  • Item 2
  • Item 3

Ordered List

  1. Item 1
  2. Item 2
  3. Item 3

Here’s a link to Google.

Images

alt text

Code Blocks

1
2
3
4
5
# This is a Python code block with 100 lines of code
for i in range(10):
    print("This is line number", i+1)
    if i == 5:
        print("Halfway there!")