Table of Contents
Syntax
Bold
You make the text bold by writing ** bold **
Italic
You make text italic by writing * italic *
LaTeX
You use LaTeX by using dollars $ ... $ or $$ ... $$ for big equations.
For example, the Black-Scholes equation: $$ \frac{\partial V}{\partial t} + \frac{1}{2}\sigma^2 S^2 \frac{\partial^2 V}{\partial S^2} + rS\frac{\partial V}{\partial S} - rV = 0 $$
Internal links
You put internal links by using [[page]] e.g. Syntax for this page.
You can name the internal link something else by writing [[page|Something else]] for example Something else still leads to this page
External links
You put extrenal links by writing [youtube](https://www.youtube.com/).
For example youtube.
Ordered lists
You put ordered lists by using 1. 2. 3.
- First item
- Second item
- Third item
1. First item 2. Second item 3. Third item
Unordered lists
You put unordered lists by using dashes - item
- First item
- Second item
- Third item
- First item - Second item - Third item
Inline code
You put inline code by using backticks “`”.
The above text was written like so:
You put `inline code` by using backticks "\`".
Code block
You put a code block by writing by using backticks ``` ... ```
#include <stdio.h> int main() { printf("Hello world!"); return 0; }
