Site features tutorial

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 code using 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.

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:

  1. step one
  2. step two
  3. 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:

a landscape photo

Or from your own files in static/images/:

![description](/images/your-image.jpg)

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 education

The shortcode creates a clickable card that opens the LinkedIn post in a new tab.

Tables

FeatureSyntaxExample
bold**text**text
italic*text*text
link[text](url)text
image![alt](url)-

Horizontal rules

Use --- to create a horizontal line:


This separates sections visually.

Summary

This post covered:

  1. text formatting (bold, italic, code)
  2. headings and structure
  3. links (internal and external)
  4. lists (ordered and unordered)
  5. blockquotes
  6. images
  7. code blocks
  8. embedded videos (youtube, iframe)
  9. linkedin post shortcode
  10. tables
  11. horizontal rules

For more details, see the GUIDE.md file in the repository.