> For the complete documentation index, see [llms.txt](https://faq.secuna.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://faq.secuna.io/guides/markdown-syntax.md).

# Markdown Syntax

## Headers <a href="#headers" id="headers"></a>

Markdown Input

```
# Header 1

## Header 2

### Header 3
```

Markdown Output

![](https://downloads.intercomcdn.com/i/o/177906111/09bfe45f22a9c919bc77a485/Screen+Shot+2020-01-18+at+7.42.54+PM.png)

## Blockquotes <a href="#blockquotes" id="blockquotes"></a>

Markdown Input

```
> One line in blockquote
> How about two?
> How about more lines in blockquote
```

Markdown Output

![](https://downloads.intercomcdn.com/i/o/177906476/fe3d1805d271d45e46c1350c/Screen+Shot+2020-01-18+at+7.47.17+PM.png)

## Text Emphasis <a href="#text-emphasis" id="text-emphasis"></a>

Markdown Input

```
*This text is italicized*
**This text is bold**
~~This text is deleted~~
```

Markdown Output

![](https://downloads.intercomcdn.com/i/o/177906701/6ba051ce5002565d2ff2226e/Screen+Shot+2020-01-18+at+7.49.46+PM.png)

## Lists <a href="#lists" id="lists"></a>

### Unordered Lists <a href="#unordered-lists" id="unordered-lists"></a>

Markdown Input

```
* Quezon City
* Makati City
* Taguig City

or

+ Quezon City
+ Makati City
+ Taguig City

or 

- Quezon City
- Makati City
- Taguig City
```

Markdown Output

![](https://downloads.intercomcdn.com/i/o/177906979/116aca208e78e60d78d2d4f4/Screen+Shot+2020-01-18+at+7.53.02+PM.png)

### Ordered Lists <a href="#ordered-lists" id="ordered-lists"></a>

Markdown Input

```
1. Red
2. Green
3. Blue
```

Markdown Output

![](https://downloads.intercomcdn.com/i/o/177907205/c2f1b21c94e790ffd7c19231/Screen+Shot+2020-01-18+at+7.55.57+PM.png)

## Links <a href="#links" id="links"></a>

### Inline-style links <a href="#inline-style-links" id="inline-style-links"></a>

Markdown Input

```
Kindly check out this [example link](http://example.com/).
```

Markdown Output

![](https://downloads.intercomcdn.com/i/o/177907431/396be851e63688a593925b79/Screen+Shot+2020-01-18+at+7.58.50+PM.png)

### Reference-style links <a href="#reference-style-links" id="reference-style-links"></a>

Markdown Input

```
Aside from [OSCP][1], most of the cybersecurity professionals are also recommending [OSWE][2] and [OSCE][3] certifications.

[1]: https://www.offensive-security.com/pwk-oscp/
[2]: https://www.offensive-security.com/awae-oswe/
[3]: https://www.offensive-security.com/ctp-osce/
```

Markdown Output

![](https://downloads.intercomcdn.com/i/o/177908061/0a2b83941d759226b943bb75/Screen+Shot+2020-01-18+at+8.06.43+PM.png)

## Code <a href="#code" id="code"></a>

### One-line / In-line code <a href="#one-line--in-line-code" id="one-line--in-line-code"></a>

Markdown Input

```
The following payload `javascript:alert(document.domain)` executes an XSS alert on your website.
```

Markdown Output

![](https://downloads.intercomcdn.com/i/o/177908428/cdfc8ff88b398dd9f27744d5/Screen+Shot+2020-01-18+at+8.10.20+PM.png)

### Multi-line code <a href="#multi-line-code" id="multi-line-code"></a>

Markdown Input

````
An XML External Entity attack is a type of attack against an application that parses XML input and allows XML entities. XML entities can be used to tell the XML parser to fetch specific content on the server.

```
<?xml version="1.0"?>
<!DOCTYPE data [
<!ELEMENT data (#ANY)>
<!ENTITY file SYSTEM "file:///etc/passwd">
]>
<data>&file;</data>
```
````

\
Markdown Output

![](https://downloads.intercomcdn.com/i/o/177908961/12734aefa9f0daf255cbfb53/Screen+Shot+2020-01-18+at+8.15.51+PM.png)

### Table <a href="#table" id="table"></a>

Markdown Input

```
| ID   | Names |
| --------- | ------- |
| 1    | Ameer |
| 2 | Nathu |
| 3      | Atom |
```

\
Markdown Output<br>

![](https://downloads.intercomcdn.com/i/o/177909122/5dbc09d156d1d83585b15539/Screen+Shot+2020-01-18+at+8.18.49+PM.png)
