🍵 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:

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

languagetypingparadigm
pythondynamicmulti-paradigm
typescriptstaticobject-oriented
ruststaticsystems

math with latex

the quadratic formula is x=b±b24ac2ax = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} for solving equations.

display math for euler's identity:

eiπ+1=0e^{i\pi} + 1 = 0

and an integral:

0ex2dx=π2\int_0^\infty e^{-x^2} dx = \frac{\sqrt{\pi}}{2}

images

![butterfly-1](butterfly-1)
this is a caption for the image above

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.

0