Skip to content

Codeblocks

You can use codeblocks inside callouts

Note

This is a codeblock inside a note

How to make a callout:
> [!WARNING]
> This is a warning inside a note
Hello World Python

Assignment

Write Hello World in Python

Solution
print("Hello World")

Source

> [!NOTE]
> ```md
> This is a codeblock inside a note
> 
> How to make a callout:
> > [!WARNING]
> > This is a warning inside a note
> ```

> [!TIP]+ Hello World Python
> > [!NOTE] Assignment
> > Write Hello World in Python
> > [!TIP]- Solution
> > ```python
> > print("Hello World")
> > ```