Skip to content

Homepage

For full documentation visit mkdocs.org.

Code Annotation Examples

Interesting Code Blocks

Some code goes here

Plain Code Block

Random Code
def basefunction()
// Comments

Code in specific language

Some Python Code with py

import tensorflow as tf
def whatever()

With some title example

bubblesort.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]

Highlight specific lines

bubblesort.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]