Markdown Help

You can use the Markdown syntax to format and structure text, for example:

StyleSyntaxToolbarExampleOutput
Bold
**...**

**bold**

bold
Italic
__...__

__italic__

italic
Blockquotes
> ...

> Blockquote…

Blockquote…

Links
[...](...)

[Bugcrowd](https://bugcrowd.com)

List (unordered)
- ...
- ...
- ...

- foo
- bar
- baz

  • foo
  • bar
  • baz
List (ordered)
1. ...
2. ...
3. ...

1. Example 1
2. Example 2
3. Example 3

  1. Example 1
  2. Example 2
  3. Example 3
Code (inline)
`...`

`0x4B1D`

0x4B1D

Code (block)
```
...
```

```
./hello-world \
&& ./hack-the-planet
```

./hello-world \
&& ./hack-the-planet