Welcome
Surprise!
You can easily showcase math bits
\[
\cos x=\sum_{k=0}^{\infty}\frac{(-1)^k}{(2k)!}x^{2k}
\]
Don't forget the \(\pi\)
Some important bit about the above equation.
Or code bits
bubble_sort.py
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]
Or pictures
And much much more1.
For full documentation visit the materials-for-mkdocs website.
-
Some footnote ↩