🍵 tea time with jonas — unraveling the chaos and beauty in the world of language
languageaiculture
Sample Post Content
This is a sample markdown file demonstrating all supported features for articles/posts.
Copy the content below (starting from ## welcome) into the console post editor.
welcome to my sample post
this is a bold statement and this is italicized. here's a link to somewhere.
lists
here's an unordered list:
- first item
- second item
- third item with
inline code
and an ordered list:
- step one
- step two
- step three
code blocks
here's some python code:
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n - 1) + fibonacci(n - 2)
print(fibonacci(10))
and some javascript:
const greet = (name) => {
console.log(`hello, ${name}!`);
};
greet('world');
tables
| language | typing | paradigm |
|---|---|---|
| python | dynamic | multi-paradigm |
| typescript | static | object-oriented |
| rust | static | systems |
math with latex
the quadratic formula is for solving equations.
display math for euler's identity:
and an integral:
images
callouts
note
this is a note callout for general information.
warning
this is a warning callout for important alerts.
abstract
this is an abstract callout, perfect for article summaries.
blockquotes
this is a blockquote. it can span multiple lines and is great for highlighting quotes or important passages.