<h2 class="heading" id="this-is-the-second-heading">
This is the second heading
</h2>
- first list item
- second list item
Source:
$$
\begin{align}
\lim_{x \to \infty} (a_n+b_n) = \lim_{x \to \infty} a_n + \lim_{x \to \infty} b_n \\
\lim_{x \to \infty} (C \cdot a_n) = C \cdot \lim_{x \to \infty} a_n \\
\lim_{x \to \infty} (a_n \cdot b_n) = \lim_{x \to \infty} a_n \cdot \lim_{x \to \infty} b_n \\
\lim_{x \to \infty} |a_n| = \left| \lim_{x \to \infty} a_n \right|
\end{align}
$$
Info
fleck does support inline html and it does inline math
$a^{32} / \frac{19}{1209}$ and even block math:
$$ \begin{align} p,q = - \frac{p}{2} \pm \sqrt{\left(\frac{p}{2}\right)-q} \\ p,q = - \frac{p}{2} \pm \sqrt{\left(\frac{p}{2}\right)-q} \end{align} $$
Warning
test
Danger
test
Note
test
// `npm run this-shit`
console.log("🤬");
console.log(`${name} is dumb`);
This paragraph contains italic, bold, ==highlighted== and striketrough elements .
This is a paragraph containing an inline code *_[]#!()
element (with special characters) and an inline hash: # as well as other special characters -=$`.
console.log("test");
let a = [3, 5, 1, 2, 6];
a.sort((x, y) => x - y));
// this is sorted asc 😳
console.log(a);
This code block is split ^o^
// bit wise in forEach?
a.forEach((x) => {
console.log(x & 1);
});
// new rentner 🧓
let rentner = {
name: "Gerald",
age: 28,
car: "911",
};
Now a better programming language:
package main
import "log"
func main(){
log.Println("Hello world!")
}
And now an even better programming language:
#include <stdio.h>
#include <stdlib.h>
int main(void){
for (int i = 0; i < 10; i++){
if (i % 3 == 0) {
printf("divisible by 3\n");
} else if (i % 5 == 0){
printf("divisible by 5\n");
} else if (i % 15 == 0){
printf("divisible by 5 & 3\n");
} else {
printf("%d", i);
}
}
printf("You just go fizzbuzzed!\n");
return EXIT_SUCCESS;
}
Now not even a programming language:
<h1 class="heading" id="this-is-the-first-heading">
This is the first heading
</h1>
This is a simple blockquote
This is a multi line blockquote
console.log("test"); // even with comments in the codeblock console.log("test");[this is not a link
this is also not a link]()
[test](this can never be a link
[](a link with an empty title?)
-
list this is a very long line, possibly even too long, SAY WHATTTT test test test loong shit link
inline code
, bold, italic and even arbitrary line breaks wtf -
checked list
-
unchecked list
@include{README.md}
Today's date: @today{2006-01-02} author: @shell{whoami}