Markdown Formatting Help


Syntax Processed
Text between underscores is _emphasized_.

Text between underscores is emphasized.

Text between double asterisks is **bold**.

Text between double asterisks is bold.

Text between backticks is formatted as `code`.

Text between backticks is formatted as code.

For a larger block of code, surround the code with three backticks:

```
def foo(x):
    print(x + 2)
```

For a larger block of code, surround the code with three backticks:

def foo(x):
    print(x + 2)

To enable syntax highlighting on a large code block, include the name of the programming language after the first set of three backticks:

```python
def foo(x):
    print(x + 2)
```

To enable syntax highlighting on a large code block, include the name of the programming language after the first set of three backticks:

def foo(x):
    print(x + 2)

Text between dollar signs is formatted as math (LaTeX): $x^2$

Text between dollar signs is formatted as math (LaTeX): x^2

Text between double dollar signs is formatted as display math (LaTeX): $$\sum_{a=0}^\infty a^n$$

Text between double dollar signs is formatted as display math (LaTeX):

\sum_{a=0}^\infty a^n

Asterisks denote a

* bulleted
* list
Asterisks denote a
  • bulleted
  • list
A number followed by a period denotes a

1. numbered
1. list
A number followed by a period denotes a
  1. numbered
  2. list
[Link to CAT-SOOP](https://catsoop.org)

Link to CAT-SOOP

![Image](https://catsoop.org/_static/_base/images/logo.svg)

Image