Sandbox
Note: This is not an actual wiki article, it’s just for me to play around with styling and ensuring everything works as it should.
Typography
- Italic
- Bold
- Bold and Italic
strikethrough
Lists
Unordered
- First thing
- Nested thing
- Second thing
Ordered
- Numbered list element 1
- Numbered list element 1.1
- Numbered list element 2
Blockquote
I never said half the shit people say I did.
- Einstein
Code
Short
function_name(x: int)
Python code
def cool_func(temperature: float) -> float:
print("Temperature is now 10° cooler")
return temperature - 10
Shell code
echo "Hello" | sed "s/Hello/Hi/"
Haskell code
main = putStrLn "hello, world"