Markdown Syntax
Secuna supports markdown syntax on reports and program policy pages.
Markdown Input
# Header 1
## Header 2
### Header 3
Markdown Output

Markdown Input
> One line in blockquote
> How about two?
> How about more lines in blockquote
Markdown Output

Markdown Input
*This text is italicized*
**This text is bold**
~~This text is deleted~~
Markdown Output

Markdown Input
* Quezon City
* Makati City
* Taguig City
or
+ Quezon City
+ Makati City
+ Taguig City
or
- Quezon City
- Makati City
- Taguig City
Markdown Output

Markdown Input
1. Red
2. Green
3. Blue
Markdown Output

Markdown Input
Kindly check out this [example link](http://example.com/).
Markdown Output

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

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

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

Markdown Input
| ID | Names |
| --------- | ------- |
| 1 | Ameer |
| 2 | Nathu |
| 3 | Atom |
Markdown Output
