Turtl notes use Markdown, a format that's easy to read and write
and doesn't require a clunky editor.
| # One hash makes a large title |
One hash makes a large title |
| ## Two hashes for a smaller header |
Two hashes for a smaller header |
- dashes - make - bullets |
|
1. you can make 1. numbered bullets 1. as well |
- you can make
- numbered bullets
- as well
|
| [Making links](https://turtl.it/) is easy! |
Making links is easy! |
| You can also make text __bold__ or *italic*. |
You can also make text bold or italic. |
| Here's an image:  |
Here's an image:  |
| > Quote text with a caret |
Quote text with a caret |
indent_code_4_spaces() {}
```
or_surround(code.by('three backticks'));
```
You can use backticks for `inline_code()`
|
indent_code_4_spaces() {}
or_surround(code.by('three backticks'));
You can use backticks for inline_code()
|
Read more about markdown.
Turtl now also supports TeX math. Begin and end your equation(s)
with $$:
| $$ P(E) = {n \\choose k} p^k (1-p)^{ n-k} $$ |
P(E) = {n \\choose k} p^k (1-p)^{ n-k} |
$$
\\begin{aligned}
\\dot{x} & = \\sigma(y-x) \\\\
\\dot{y} & = \\rho x - y - xz \\\\
\\dot{z} & = -\\beta z + xy
\\end{aligned}
$$
|
\\begin{aligned}
\\dot{x} & = \\sigma(y-x) \\\\
\\dot{y} & = \\rho x - y - xz \\\\
\\dot{z} & = -\\beta z + xy
\\end{aligned} |