Markdown Syntax

Secuna supports markdown syntax on reports and program policy pages.

Headers

Markdown Input

# Header 1

## Header 2

### Header 3

Markdown Output

Blockquotes

Markdown Input

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

Markdown Output

Text Emphasis

Markdown Input

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

Markdown Output

Lists

Unordered Lists

Markdown Input

* Quezon City
* Makati City
* Taguig City

or

+ Quezon City
+ Makati City
+ Taguig City

or 

- Quezon City
- Makati City
- Taguig City

Markdown Output

Ordered Lists

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

Code

One-line / In-line code

Markdown Input

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

Markdown Output

Multi-line code

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

Table

Markdown Input

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

Markdown Output

Last updated