Programming language

The triple backticks can be used to insert programming code. The default is plaintext without line numbering.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
def count(n):
    """
    Count to n.
    """
    for i in range(1, n + 1):
        print(i)

def greet():
    """
    Say hello.
    """
    print("Hello, world!")

if __name__ == "__main__":
   greet()
   count(10)

You must specify a target language for syntax highlighting. Line numbering is on by default.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
def count(n):
    """
    Count to n.
    """
    for i in range(1, n + 1):
        print(i)

def greet():
    """
    Say hello.
    """
    print("Hello, world!")

if __name__ == "__main__":
   greet()
   count(10)

Use the attribute {: .nolineno } to turn off line numbering.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
def count(n):
    """
    Count to n.
    """
    for i in range(1, n + 1):
        print(i)

def greet():
    """
    Say hello.
    """
    print("Hello, world!")

if __name__ == "__main__":
   greet()
   count(10)

JavaScript wants to join in the fun.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * Count to n.
 */
function count(n) {
    for (let i = 1; i <= 10; i++) {
        console.log(i);
    }
}

/**
 * Say hello.
 */
function greet() {
    console.log("Hello, world!");
}

greet();
count(10);

Haskell’s turn:

1
2
3
4
5
6
7
myMax :: Integer -> Integer -> Integer
myMax x y = maximum [x, y]

maxInt :: [Integer] -> Integer
maxInt [] = error "Cannot be empty list"
maxInt [x] = x
maxInt (x:xs) = myMax x (maxInt xs)

Use the attribute {: file="path/to/file" } to specify the file path.

1
2
3
4
5
6
7
myMax :: Integer -> Integer -> Integer
myMax x y = maximum [x, y]

maxInt :: [Integer] -> Integer
maxInt [] = error "Cannot be empty list"
maxInt [x] = x
maxInt (x:xs) = myMax x (maxInt xs)