Photo by
donauwood_de
Hello World
A sample blog post demonstrating code highlighting and markdown features
Welcome! 👌
Welcome to my blog! Here’s a sample code block with python:
1def greet(name: str) -> str:
2 return f'Hello {name}!'
3
4print(greet('World'))