Skip to content

Quic Start

Csharp Code

public class Person
{
    public string Name {get;set;}
}

Python Code

The Python Code code is a sample python code paragraph.

bubble_sort.py
1
2
3
4
5
def bubble_sort(items):
    for i in range(len(items)):
        for j in range(len(items) - 1 - i):
            if items[j] > items[j + 1]:
                items[j], items[j + 1] = items[j + 1], items[j]

Highlighting inline code blocks

The range() function in python is used to generate a sequence of numbers.

Mermaid Graph

graph LR
  A[Start] --> B{Error?};
  B -->|Yes| C[Hmm...];
  C --> D[Debug];
  D --> B;
  B ---->|No| E[Yay!];