40 lines
520 B
Markdown
40 lines
520 B
Markdown
---
|
|
title: Hello
|
|
date: 2025-01-07
|
|
---
|
|
|
|
Some excerpt for the blog post teasing what it is _about_
|
|
|
|
---
|
|
|
|
[[TOC]]
|
|
|
|
## Some test blog post
|
|
|
|
with some lorem ipsum text
|
|
|
|
```python
|
|
def hello_world() -> str:
|
|
return "Hello, World!"
|
|
|
|
if __name__ == "__main__":
|
|
string = hello_world()
|
|
print(string)
|
|
```
|
|
|
|
> [!NOTE]
|
|
> Highlights information that users should take into account, even when skimming.
|
|
|
|
```js
|
|
export default {
|
|
name: "MyComponent",
|
|
};
|
|
```
|
|
|
|
## Hello 2
|
|
|
|
some more `text` with _awesome_ **formatting**
|
|
|
|
---
|
|
|
|
some more text
|