This post demonstrates all the features available on this site. Use it as a reference when writing your own posts.
Text formatting
Basic text formatting options:
- bold text using
**bold** - italic text using
*italic* - bold and italic using
***both*** inline codeusing backticks
Headings
Use ## for main sections and ### for subsections. This post uses h2 for main sections.
This is a subsection
Subsections help organize longer posts.
Links
External links work like this: Google Scholar
Internal links to other pages: back to homepage
Lists
Unordered lists:
- first item
- second item
- nested item
- another nested item
- third item
Ordered lists:
- step one
- step two
- step three
Blockquotes
Blockquotes are useful for highlighting important quotes or key takeaways from your research. They stand out visually from the rest of the text.
You can also use them for citing others:
“The measure of intelligence is the ability of change.” — Albert Einstein
Images
Images can be added from external URLs:
Or from your own files in static/images/:

Code blocks
For showing code or technical content:
def hello_world():
print("Hello, world!")
return True
# example yaml configuration
title: "My Site"
params:
email: "example@university.nl"
Embedded videos
You can embed YouTube videos using the youtube shortcode:
Or embed any iframe with the iframe shortcode:
{{< iframe src="https://example.com/embed" title="Example embed" >}}
LinkedIn posts
Reference LinkedIn posts inline using the linkedin shortcode:
UvA on AI in educationThe shortcode creates a clickable card that opens the LinkedIn post in a new tab.
Tables
| Feature | Syntax | Example |
|---|---|---|
| bold | **text** | text |
| italic | *text* | text |
| link | [text](url) | text |
| image |  | - |
Horizontal rules
Use --- to create a horizontal line:
This separates sections visually.
Summary
This post covered:
- text formatting (bold, italic, code)
- headings and structure
- links (internal and external)
- lists (ordered and unordered)
- blockquotes
- images
- code blocks
- embedded videos (youtube, iframe)
- linkedin post shortcode
- tables
- horizontal rules
For more details, see the GUIDE.md file in the repository.