We use Hugo static site generator. This will generate HTML files based on markdown files. Click the following links for more information about
To add code, use the ``` + the language, followed again by ```.
See what the output does:
``` cs
class Foo : Bar
{
public Foo() : base()
{
}
}
```
will become
class Foo : Bar
{
public Foo() : base()
{
}
}
Adding images/video/audio markdown images works, but sometimes results in error 
Or use the standard html way: 
Videos can be added using files that can be uploaded, though be sure not to make them too big:
Better is to upload your video to YouTube and then put a embed video in your page:
References can be added like this: [[1]](#ref1), where #ref1 corresponds to an anchor tag with the same name (without the #):
1. <a name="ref1"> J. Smith, A. Johnson, and P. Aaron, "Title of the Paper," in *Name of the Journal*, vol. 10, no. 3, pp. 294-302, 2018.
As discussed by Smith et al. [1], the structure of the internet is inherently complex. Further developments in internet technology often rely on this foundational understanding [2].
N.B. It is possible to add inline styles yo your markdown files, if you want to get really creative :)
.emoji {
font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
}

